forked from qt-creator/qt-creator
API Documentation: Fix warnings.
This commit is contained in:
@@ -73,7 +73,8 @@
|
||||
|
||||
/*!
|
||||
\fn bool ICore::showOptionsDialog(const QString &group = QString(),
|
||||
const QString &page = QString())
|
||||
const QString &page = QString(),
|
||||
QWidget *parent = 0)
|
||||
\brief Opens the application options/preferences dialog with preselected
|
||||
\a page in a specified \a group.
|
||||
|
||||
@@ -124,14 +125,6 @@
|
||||
general application debug messages.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn ExtensionSystem::PluginManager *ICore::pluginManager() const
|
||||
\brief Returns the application's plugin manager.
|
||||
|
||||
The plugin manager handles the plugin life cycles and manages
|
||||
the common object pool.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn EditorManager *ICore::editorManager() const
|
||||
\brief Returns the application's editor manager.
|
||||
@@ -192,7 +185,7 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QSettings *ICore::settings(QSettings::UserScope scope) const
|
||||
\fn QSettings *ICore::settings(QSettings::Scope scope = QSettings::UserScope) const
|
||||
\brief Returns the application's main settings object.
|
||||
|
||||
You can use it to retrieve or set application wide settings
|
||||
@@ -263,7 +256,7 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void ICore::updateAdditionalContexts(const Core::Context &remove, const Core::Context &add)
|
||||
\fn void ICore::updateAdditionalContexts(const Context &remove, const Context &add)
|
||||
\brief Change the currently active additional contexts.
|
||||
|
||||
Removes the list of additional contexts specified by \a remove and adds the
|
||||
@@ -303,7 +296,7 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void ICore::openFiles(const QStringList &fileNames)
|
||||
\fn void ICore::openFiles(const QStringList &fileNames, OpenFilesFlags flags = None)
|
||||
\brief Open all files from a list of \a fileNames like it would be
|
||||
done if they were given to Qt Creator on the command line, or
|
||||
they were opened via \gui{File|Open}.
|
||||
|
||||
Reference in New Issue
Block a user