aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2013-06-05 08:43:52 +0300
committerOrgad Shaneh <orgads@gmail.com>2013-06-05 10:07:14 +0200
commit81fc8ff2109149eee203dd8148c14a7ffd9f4695 (patch)
tree69fd84f5aedc5882051e29474f04638e893eebf3
parent506b4ca9a802d8dd27d20d7dc5df34c9af53dfb9 (diff)
Doc: Remove \fn lines adjacent to functions
They are unneeded, some of them are unmaintained Change-Id: I0ad87e152d8e2328b486b2f904f7cf9613004afe Reviewed-by: Eike Ziller <eike.ziller@digia.com>
-rw-r--r--src/libs/extensionsystem/plugindetailsview.cpp3
-rw-r--r--src/libs/extensionsystem/pluginerrorview.cpp3
-rw-r--r--src/libs/extensionsystem/pluginmanager.cpp59
-rw-r--r--src/libs/extensionsystem/pluginspec.cpp52
-rw-r--r--src/libs/qmldebug/qpacketprotocol.cpp2
-rw-r--r--src/libs/qmljs/parser/qmlerror.cpp1
-rw-r--r--src/libs/qmljs/persistenttrie.cpp4
-rw-r--r--src/libs/utils/savedaction.cpp2
-rw-r--r--src/libs/zeroconf/servicebrowser.cpp2
-rw-r--r--src/plugins/coreplugin/actionmanager/actioncontainer.cpp2
-rw-r--r--src/plugins/coreplugin/documentmanager.cpp30
-rw-r--r--src/plugins/coreplugin/progressmanager/futureprogress.cpp8
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp2
-rw-r--r--src/plugins/debugger/watchwindow.cpp7
-rw-r--r--src/plugins/find/searchresultwindow.cpp28
-rw-r--r--src/plugins/locator/locatorplugin.cpp4
-rw-r--r--src/plugins/projectexplorer/projectexplorer.cpp2
-rw-r--r--src/plugins/projectexplorer/runconfiguration.cpp9
-rw-r--r--src/plugins/projectexplorer/session.cpp2
-rw-r--r--src/plugins/texteditor/syntaxhighlighter.cpp2
20 files changed, 7 insertions, 217 deletions
diff --git a/src/libs/extensionsystem/plugindetailsview.cpp b/src/libs/extensionsystem/plugindetailsview.cpp
index ca3c267cea..cb9e792443 100644
--- a/src/libs/extensionsystem/plugindetailsview.cpp
+++ b/src/libs/extensionsystem/plugindetailsview.cpp
@@ -46,7 +46,6 @@
using namespace ExtensionSystem;
/*!
- \fn PluginDetailsView::PluginDetailsView(QWidget *parent)
Constructs a new view with given \a parent widget.
*/
PluginDetailsView::PluginDetailsView(QWidget *parent)
@@ -57,7 +56,6 @@ PluginDetailsView::PluginDetailsView(QWidget *parent)
}
/*!
- \fn PluginDetailsView::~PluginDetailsView()
\internal
*/
PluginDetailsView::~PluginDetailsView()
@@ -66,7 +64,6 @@ PluginDetailsView::~PluginDetailsView()
}
/*!
- \fn void PluginDetailsView::update(PluginSpec *spec)
Reads the given \a spec and displays its values
in this PluginDetailsView.
*/
diff --git a/src/libs/extensionsystem/pluginerrorview.cpp b/src/libs/extensionsystem/pluginerrorview.cpp
index 7d4c9e825a..81d3c63f1b 100644
--- a/src/libs/extensionsystem/pluginerrorview.cpp
+++ b/src/libs/extensionsystem/pluginerrorview.cpp
@@ -46,7 +46,6 @@
using namespace ExtensionSystem;
/*!
- \fn PluginErrorView::PluginErrorView(QWidget *parent)
Constructs a new error view with given \a parent widget.
*/
PluginErrorView::PluginErrorView(QWidget *parent)
@@ -57,7 +56,6 @@ PluginErrorView::PluginErrorView(QWidget *parent)
}
/*!
- \fn PluginErrorView::~PluginErrorView()
\internal
*/
PluginErrorView::~PluginErrorView()
@@ -66,7 +64,6 @@ PluginErrorView::~PluginErrorView()
}
/*!
- \fn void PluginErrorView::update(PluginSpec *spec)
Reads the given \a spec and displays its state and
error information in this PluginErrorView.
*/
diff --git a/src/libs/extensionsystem/pluginmanager.cpp b/src/libs/extensionsystem/pluginmanager.cpp
index 69b5131793..19680cb603 100644
--- a/src/libs/extensionsystem/pluginmanager.cpp
+++ b/src/libs/extensionsystem/pluginmanager.cpp
@@ -245,7 +245,6 @@ static bool lessThanByPluginName(const PluginSpec *one, const PluginSpec *two)
PluginManager *PluginManager::m_instance = 0;
/*!
- \fn PluginManager *PluginManager::instance()
Get the unique plugin manager instance.
*/
PluginManager *PluginManager::instance()
@@ -254,7 +253,6 @@ PluginManager *PluginManager::instance()
}
/*!
- \fn PluginManager::PluginManager()
Create a plugin manager. Should be done only once per application.
*/
PluginManager::PluginManager()
@@ -264,7 +262,6 @@ PluginManager::PluginManager()
}
/*!
- \fn PluginManager::~PluginManager()
\internal
*/
PluginManager::~PluginManager()
@@ -274,7 +271,6 @@ PluginManager::~PluginManager()
}
/*!
- \fn void PluginManager::addObject(QObject *obj)
Add the given object \a obj to the object pool, so it can be retrieved again from the pool by type.
The plugin manager does not do any memory management - added objects
must be removed from the pool and deleted manually by whoever is responsible for the object.
@@ -291,7 +287,6 @@ void PluginManager::addObject(QObject *obj)
}
/*!
- \fn void PluginManager::removeObject(QObject *obj)
Emits aboutToRemoveObject() and removes the object \a obj from the object pool.
\sa PluginManager::addObject()
*/
@@ -301,7 +296,6 @@ void PluginManager::removeObject(QObject *obj)
}
/*!
- \fn QList<QObject *> PluginManager::allObjects() const
Retrieve the list of all objects in the pool, unfiltered.
Usually clients do not need to call this.
\sa PluginManager::getObject()
@@ -313,7 +307,6 @@ QList<QObject *> PluginManager::allObjects()
}
/*!
- \fn void PluginManager::loadPlugins()
Tries to load all the plugins that were previously found when
setting the plugin search paths. The plugin specs of the plugins
can be used to retrieve error and state information about individual plugins.
@@ -327,7 +320,6 @@ void PluginManager::loadPlugins()
}
/*!
- \fn bool PluginManager::hasError() const
Returns true if any plugin has errors even though it is enabled.
Most useful to call after loadPlugins().
*/
@@ -342,7 +334,6 @@ bool PluginManager::hasError()
}
/*!
- \fn void PluginManager::shutdown()
Shuts down and deletes all plugins.
*/
void PluginManager::shutdown()
@@ -351,7 +342,6 @@ void PluginManager::shutdown()
}
/*!
- \fn QStringList PluginManager::pluginPaths() const
The list of paths were the plugin manager searches for plugins.
\sa setPluginPaths()
@@ -362,7 +352,6 @@ QStringList PluginManager::pluginPaths()
}
/*!
- \fn void PluginManager::setPluginPaths(const QStringList &paths)
Sets the plugin search paths, i.e. the file system paths where the plugin manager
looks for plugin descriptions. All given \a paths and their sub directory trees
are searched for plugin xml description files.
@@ -376,7 +365,6 @@ void PluginManager::setPluginPaths(const QStringList &paths)
}
/*!
- \fn QString PluginManager::fileExtension() const
The file extension of plugin description files.
The default is "xml".
@@ -388,7 +376,6 @@ QString PluginManager::fileExtension()
}
/*!
- \fn void PluginManager::setFileExtension(const QString &extension)
Sets the file extension of plugin description files.
The default is "xml".
At the moment this must be called before setPluginPaths() is called.
@@ -439,7 +426,6 @@ void PluginManager::writeSettings()
}
/*!
- \fn QStringList PluginManager::arguments() const
The arguments left over after parsing (Neither startup nor plugin
arguments). Typically, this will be the list of files to open.
*/
@@ -449,7 +435,6 @@ QStringList PluginManager::arguments()
}
/*!
- \fn QList<PluginSpec *> PluginManager::plugins() const
List of all plugin specifications that have been found in the plugin search paths.
This list is valid directly after the setPluginPaths() call.
The plugin specifications contain the information from the plugins' xml description files
@@ -468,9 +453,9 @@ QHash<QString, PluginCollection *> PluginManager::pluginCollections()
return m_instance->d->pluginCategories;
}
-/*!
- \fn QString PluginManager::serializedArguments() const
+static const char argumentKeywordC[] = ":arguments";
+/*!
Serialize plugin options and arguments for sending in a single string
via QtSingleApplication:
":myplugin|-option1|-option2|:arguments|argument1|argument2",
@@ -478,9 +463,6 @@ QHash<QString, PluginCollection *> PluginManager::pluginCollections()
\sa setPluginPaths()
*/
-
-static const char argumentKeywordC[] = ":arguments";
-
QString PluginManager::serializedArguments()
{
const QChar separator = QLatin1Char('|');
@@ -532,8 +514,6 @@ static QStringList subList(const QStringList &in, const QString &key)
}
/*!
- \fn PluginManager::remoteArguments(const QString &argument, QObject *socket)
-
Parses the options encoded by serializedArguments() const
and passes them on to the respective plugins along with the arguments.
@@ -562,7 +542,6 @@ void PluginManager::remoteArguments(const QString &serializedArgument, QObject *
}
/*!
- \fn bool PluginManager::parseOptions(const QStringList &args, const QMap<QString, bool> &appOptions, QMap<QString, QString> *foundAppOptions, QString *errorString)
Takes the list of command line options in \a args and parses them.
The plugin manager itself might process some options itself directly (-noload <plugin>), and
adds options that are registered by plugins to their plugin specs.
@@ -611,8 +590,6 @@ static inline void formatOption(QTextStream &str,
}
/*!
- \fn static PluginManager::formatOptions(QTextStream &str, int optionIndentation, int descriptionIndentation)
-
Format the startup options of the plugin manager for command line help.
*/
@@ -638,8 +615,6 @@ void PluginManager::formatOptions(QTextStream &str, int optionIndentation, int d
}
/*!
- \fn PluginManager::formatPluginOptions(QTextStream &str, int optionIndentation, int descriptionIndentation) const
-
Format the plugin options of the plugin specs for command line help.
*/
@@ -660,11 +635,8 @@ void PluginManager::formatPluginOptions(QTextStream &str, int optionIndentation,
}
/*!
- \fn PluginManager::formatPluginVersions(QTextStream &str) const
-
Format the version of the plugin specs for command line help.
*/
-
void PluginManager::formatPluginVersions(QTextStream &str)
{
const PluginSpecSet::const_iterator cend = m_instance->d->pluginSpecs.constEnd();
@@ -747,7 +719,6 @@ void PluginManager::startTests()
}
/*!
- * \fn bool PluginManager::runningTests() const
* \internal
*/
bool PluginManager::testRunRequested()
@@ -756,7 +727,6 @@ bool PluginManager::testRunRequested()
}
/*!
- * \fn QString PluginManager::testDataDirectory() const
* \internal
*/
QString PluginManager::testDataDirectory()
@@ -772,8 +742,6 @@ QString PluginManager::testDataDirectory()
}
/*!
- \fn void PluginManager::profilingReport(const char *what, const PluginSpec *spec = 0)
-
Create a profiling entry showing the elapsed time if profiling is activated.
*/
@@ -784,8 +752,6 @@ void PluginManager::profilingReport(const char *what, const PluginSpec *spec)
/*!
- \fn void PluginManager::loadQueue()
-
Returns a list of plugins in load order.
*/
QList<PluginSpec *> PluginManager::loadQueue()
@@ -796,7 +762,6 @@ QList<PluginSpec *> PluginManager::loadQueue()
//============PluginManagerPrivate===========
/*!
- \fn PluginSpec *PluginManagerPrivate::createSpec()
\internal
*/
PluginSpec *PluginManagerPrivate::createSpec()
@@ -805,7 +770,6 @@ PluginSpec *PluginManagerPrivate::createSpec()
}
/*!
- \fn void PluginManagerPrivate::setSettings(QSettings *settings)
\internal
*/
void PluginManagerPrivate::setSettings(QSettings *s)
@@ -830,7 +794,6 @@ void PluginManagerPrivate::setGlobalSettings(QSettings *s)
}
/*!
- \fn PluginSpecPrivate *PluginManagerPrivate::privateSpec(PluginSpec *spec)
\internal
*/
PluginSpecPrivate *PluginManagerPrivate::privateSpec(PluginSpec *spec)
@@ -859,7 +822,6 @@ void PluginManagerPrivate::nextDelayedInitialize()
}
/*!
- \fn PluginManagerPrivate::PluginManagerPrivate(PluginManager *pluginManager)
\internal
*/
PluginManagerPrivate::PluginManagerPrivate(PluginManager *pluginManager) :
@@ -876,7 +838,6 @@ PluginManagerPrivate::PluginManagerPrivate(PluginManager *pluginManager) :
/*!
- \fn PluginManagerPrivate::~PluginManagerPrivate()
\internal
*/
PluginManagerPrivate::~PluginManagerPrivate()
@@ -886,7 +847,6 @@ PluginManagerPrivate::~PluginManagerPrivate()
}
/*!
- \fn void PluginManagerPrivate::writeSettings()
\internal
*/
void PluginManagerPrivate::writeSettings()
@@ -907,7 +867,6 @@ void PluginManagerPrivate::writeSettings()
}
/*!
- \fn void PluginManagerPrivate::readSettings()
\internal
*/
void PluginManagerPrivate::readSettings()
@@ -921,7 +880,6 @@ void PluginManagerPrivate::readSettings()
}
/*!
- \fn void PluginManagerPrivate::stopAll()
\internal
*/
void PluginManagerPrivate::stopAll()
@@ -938,7 +896,6 @@ void PluginManagerPrivate::stopAll()
}
/*!
- \fn void PluginManagerPrivate::deleteAll()
\internal
*/
void PluginManagerPrivate::deleteAll()
@@ -952,7 +909,6 @@ void PluginManagerPrivate::deleteAll()
}
/*!
- \fn void PluginManagerPrivate::addObject(QObject *obj)
\internal
*/
void PluginManagerPrivate::addObject(QObject *obj)
@@ -984,7 +940,6 @@ void PluginManagerPrivate::addObject(QObject *obj)
}
/*!
- \fn void PluginManagerPrivate::removeObject(QObject *obj)
\internal
*/
void PluginManagerPrivate::removeObject(QObject *obj)
@@ -1008,7 +963,6 @@ void PluginManagerPrivate::removeObject(QObject *obj)
}
/*!
- \fn void PluginManagerPrivate::loadPlugins()
\internal
*/
void PluginManagerPrivate::loadPlugins()
@@ -1039,7 +993,6 @@ void PluginManagerPrivate::loadPlugins()
}
/*!
- \fn void PluginManagerPrivate::shutdown()
\internal
*/
void PluginManagerPrivate::shutdown()
@@ -1055,7 +1008,6 @@ void PluginManagerPrivate::shutdown()
}
/*!
- \fn void PluginManagerPrivate::asyncShutdownFinished()
\internal
*/
void PluginManagerPrivate::asyncShutdownFinished()
@@ -1068,7 +1020,6 @@ void PluginManagerPrivate::asyncShutdownFinished()
}
/*!
- \fn void PluginManagerPrivate::loadQueue()
\internal
*/
QList<PluginSpec *> PluginManagerPrivate::loadQueue()
@@ -1082,7 +1033,6 @@ QList<PluginSpec *> PluginManagerPrivate::loadQueue()
}
/*!
- \fn bool PluginManagerPrivate::loadQueue(PluginSpec *spec, QList<PluginSpec *> &queue, QList<PluginSpec *> &circularityCheckQueue)
\internal
*/
bool PluginManagerPrivate::loadQueue(PluginSpec *spec, QList<PluginSpec *> &queue,
@@ -1125,7 +1075,6 @@ bool PluginManagerPrivate::loadQueue(PluginSpec *spec, QList<PluginSpec *> &queu
}
/*!
- \fn void PluginManagerPrivate::loadPlugin(PluginSpec *spec, PluginSpec::State destState)
\internal
*/
void PluginManagerPrivate::loadPlugin(PluginSpec *spec, PluginSpec::State destState)
@@ -1192,7 +1141,6 @@ void PluginManagerPrivate::loadPlugin(PluginSpec *spec, PluginSpec::State destSt
}
/*!
- \fn void PluginManagerPrivate::setPluginPaths(const QStringList &paths)
\internal
*/
void PluginManagerPrivate::setPluginPaths(const QStringList &paths)
@@ -1203,7 +1151,6 @@ void PluginManagerPrivate::setPluginPaths(const QStringList &paths)
}
/*!
- \fn void PluginManagerPrivate::readPluginPaths()
\internal
*/
void PluginManagerPrivate::readPluginPaths()
@@ -1361,7 +1308,6 @@ void PluginManagerPrivate::profilingSummary() const
}
/*!
- \fn void PluginManager::getObjectByName(const QString &name) const
\brief Retrieves one object with a given name from the object pool.
\sa addObject()
*/
@@ -1378,7 +1324,6 @@ QObject *PluginManager::getObjectByName(const QString &name)
}
/*!
- \fn void PluginManager::getObjectByClassName(const QString &className) const
Retrieves one object inheriting a class with a given name from the object pool.
\sa addObject()
*/
diff --git a/src/libs/extensionsystem/pluginspec.cpp b/src/libs/extensionsystem/pluginspec.cpp
index 87a70d09c2..c9ccce4ce2 100644
--- a/src/libs/extensionsystem/pluginspec.cpp
+++ b/src/libs/extensionsystem/pluginspec.cpp
@@ -145,7 +145,6 @@ using namespace ExtensionSystem;
using namespace ExtensionSystem::Internal;
/*!
- \fn uint qHash(const ExtensionSystem::PluginDependency &value)
\internal
*/
uint ExtensionSystem::qHash(const ExtensionSystem::PluginDependency &value)
@@ -154,7 +153,6 @@ uint ExtensionSystem::qHash(const ExtensionSystem::PluginDependency &value)
}
/*!
- \fn bool PluginDependency::operator==(const PluginDependency &other) const
\internal
*/
bool PluginDependency::operator==(const PluginDependency &other) const
@@ -163,7 +161,6 @@ bool PluginDependency::operator==(const PluginDependency &other) const
}
/*!
- \fn PluginSpec::PluginSpec()
\internal
*/
PluginSpec::PluginSpec()
@@ -172,7 +169,6 @@ PluginSpec::PluginSpec()
}
/*!
- \fn PluginSpec::~PluginSpec()
\internal
*/
PluginSpec::~PluginSpec()
@@ -182,7 +178,6 @@ PluginSpec::~PluginSpec()
}
/*!
- \fn QString PluginSpec::name() const
The plugin name. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::name() const
@@ -191,7 +186,6 @@ QString PluginSpec::name() const
}
/*!
- \fn QString PluginSpec::version() const
The plugin version. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::version() const
@@ -200,7 +194,6 @@ QString PluginSpec::version() const
}
/*!
- \fn QString PluginSpec::compatVersion() const
The plugin compatibility version. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::compatVersion() const
@@ -209,7 +202,6 @@ QString PluginSpec::compatVersion() const
}
/*!
- \fn QString PluginSpec::vendor() const
The plugin vendor. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::vendor() const
@@ -218,7 +210,6 @@ QString PluginSpec::vendor() const
}
/*!
- \fn QString PluginSpec::copyright() const
The plugin copyright. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::copyright() const
@@ -227,7 +218,6 @@ QString PluginSpec::copyright() const
}
/*!
- \fn QString PluginSpec::license() const
The plugin license. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::license() const
@@ -236,7 +226,6 @@ QString PluginSpec::license() const
}
/*!
- \fn QString PluginSpec::description() const
The plugin description. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::description() const
@@ -245,7 +234,6 @@ QString PluginSpec::description() const
}
/*!
- \fn QString PluginSpec::url() const
The plugin url where you can find more information about the plugin. This is valid after the PluginSpec::Read state is reached.
*/
QString PluginSpec::url() const
@@ -254,7 +242,6 @@ QString PluginSpec::url() const
}
/*!
- \fn QString PluginSpec::category() const
The category that the plugin belongs to. Categories are groups of plugins which allow for keeping them together in the UI.
Returns an empty string if the plugin does not belong to a category.
*/
@@ -264,7 +251,6 @@ QString PluginSpec::category() const
}
/*!
- \fn bool PluginSpec::isExperimental() const
Returns if the plugin has its experimental flag set.
*/
bool PluginSpec::isExperimental() const
@@ -283,7 +269,6 @@ bool PluginSpec::isDisabledByDefault() const
}
/*!
- \fn bool PluginSpec::isEnabledInSettings() const
Returns if the plugin should be loaded at startup. True by default
The user can change it from the Plugin settings.
Note: That this function returns true even if a plugin is disabled because
@@ -295,7 +280,6 @@ bool PluginSpec::isEnabledInSettings() const
}
/*!
- \fn bool PluginSpec::isEffectivelyEnabled() const
Returns if the plugin is loaded at startup.
\see PluginSpec::isEnabled
*/
@@ -307,7 +291,6 @@ bool PluginSpec::isEffectivelyEnabled() const
}
/*!
- \fn bool PluginSpec::isDisabledIndirectly() const
Returns true if loading was not done due to user unselecting this plugin or its dependencies.
*/
bool PluginSpec::isDisabledIndirectly() const
@@ -316,7 +299,6 @@ bool PluginSpec::isDisabledIndirectly() const
}
/*!
- \fn bool PluginSpec::isForceEnabled() const
Returns if the plugin is enabled via the -load option on the command line.
*/
bool PluginSpec::isForceEnabled() const
@@ -325,7 +307,6 @@ bool PluginSpec::isForceEnabled() const
}
/*!
- \fn bool PluginSpec::isForceDisabled() const
Returns if the plugin is disabled via the -noload option on the command line.
*/
bool PluginSpec::isForceDisabled() const
@@ -334,7 +315,6 @@ bool PluginSpec::isForceDisabled() const
}
/*!
- \fn QList<PluginDependency> PluginSpec::dependencies() const
The plugin dependencies. This is valid after the PluginSpec::Read state is reached.
*/
QList<PluginDependency> PluginSpec::dependencies() const
@@ -343,7 +323,6 @@ QList<PluginDependency> PluginSpec::dependencies() const
}
/*!
- \fn PluginSpec::PluginArgumentDescriptions PluginSpec::argumentDescriptions() const
Returns a list of descriptions of command line arguments the plugin processes.
*/
@@ -353,7 +332,6 @@ PluginSpec::PluginArgumentDescriptions PluginSpec::argumentDescriptions() const
}
/*!
- \fn QString PluginSpec::location() const
The absolute path to the directory containing the plugin xml description file
this PluginSpec corresponds to.
*/
@@ -363,7 +341,6 @@ QString PluginSpec::location() const
}
/*!
- \fn QString PluginSpec::filePath() const
The absolute path to the plugin xml description file (including the file name)
this PluginSpec corresponds to.
*/
@@ -373,7 +350,6 @@ QString PluginSpec::filePath() const
}
/*!
- \fn QStringList PluginSpec::arguments() const
Command line arguments specific to that plugin. Set at startup
*/
@@ -383,7 +359,6 @@ QStringList PluginSpec::arguments() const
}
/*!
- \fn void PluginSpec::setArguments(const QStringList &arguments)
Set the command line arguments specific to that plugin to \a arguments.
*/
@@ -393,7 +368,6 @@ void PluginSpec::setArguments(const QStringList &arguments)
}
/*!
- \fn PluginSpec::addArgument(const QString &argument)
Adds \a argument to the command line arguments specific to that plugin.
*/
@@ -404,7 +378,6 @@ void PluginSpec::addArgument(const QString &argument)
/*!
- \fn PluginSpec::State PluginSpec::state() const
The state in which the plugin currently is.
See the description of the PluginSpec::State enum for details.
*/
@@ -414,7 +387,6 @@ PluginSpec::State PluginSpec::state() const
}
/*!
- \fn bool PluginSpec::hasError() const
Returns whether an error occurred while reading/starting the plugin.
*/
bool PluginSpec::hasError() const
@@ -423,7 +395,6 @@ bool PluginSpec::hasError() const
}
/*!
- \fn QString PluginSpec::errorString() const
Detailed, possibly multi-line, error description in case of an error.
*/
QString PluginSpec::errorString() const
@@ -432,7 +403,6 @@ QString PluginSpec::errorString() const
}
/*!
- \fn bool PluginSpec::provides(const QString &pluginName, const QString &version) const
Returns if this plugin can be used to fill in a dependency of the given
\a pluginName and \a version.
@@ -444,7 +414,6 @@ bool PluginSpec::provides(const QString &pluginName, const QString &version) con
}
/*!
- \fn IPlugin *PluginSpec::plugin() const
The corresponding IPlugin instance, if the plugin library has already been successfully loaded,
i.e. the PluginSpec::Loaded state is reached.
*/
@@ -454,7 +423,6 @@ IPlugin *PluginSpec::plugin() const
}
/*!
- \fn QList<PluginSpec *> PluginSpec::dependencySpecs() const
Returns the list of dependencies, already resolved to existing plugin specs.
Valid if PluginSpec::Resolved state is reached.
@@ -493,7 +461,6 @@ namespace {
const char ARGUMENT_PARAMETER[] = "parameter";
}
/*!
- \fn PluginSpecPrivate::PluginSpecPrivate(PluginSpec *spec)
\internal
*/
PluginSpecPrivate::PluginSpecPrivate(PluginSpec *spec)
@@ -512,7 +479,6 @@ PluginSpecPrivate::PluginSpecPrivate(PluginSpec *spec)
}
/*!
- \fn bool PluginSpecPrivate::read(const QString &fileName)
\internal
*/
bool PluginSpecPrivate::read(const QString &fileName)
@@ -590,7 +556,6 @@ void PluginSpec::setForceDisabled(bool value)
}
/*!
- \fn bool PluginSpecPrivate::reportError(const QString &err)
\internal
*/
bool PluginSpecPrivate::reportError(const QString &err)
@@ -626,7 +591,6 @@ static inline QString msgUnexpectedToken()
}
/*!
- \fn void PluginSpecPrivate::readPluginSpec(QXmlStreamReader &reader)
\internal
*/
void PluginSpecPrivate::readPluginSpec(QXmlStreamReader &reader)
@@ -702,10 +666,8 @@ void PluginSpecPrivate::readPluginSpec(QXmlStreamReader &reader)
}
/*!
- \fn void PluginSpecPrivate::readArgumentDescriptions(QXmlStreamReader &reader)
\internal
*/
-
void PluginSpecPrivate::readArgumentDescriptions(QXmlStreamReader &reader)
{
QString element;
@@ -736,7 +698,6 @@ void PluginSpecPrivate::readArgumentDescriptions(QXmlStreamReader &reader)
}
/*!
- \fn void PluginSpecPrivate::readArgumentDescription(QXmlStreamReader &reader)
\internal
*/
void PluginSpecPrivate::readArgumentDescription(QXmlStreamReader &reader)
@@ -766,7 +727,6 @@ bool PluginSpecPrivate::readBooleanValue(QXmlStreamReader &reader, const char *k
}
/*!
- \fn void PluginSpecPrivate::readDependencies(QXmlStreamReader &reader)
\internal
*/
void PluginSpecPrivate::readDependencies(QXmlStreamReader &reader)
@@ -799,7 +759,6 @@ void PluginSpecPrivate::readDependencies(QXmlStreamReader &reader)
}
/*!
- \fn void PluginSpecPrivate::readDependencyEntry(QXmlStreamReader &reader)
\internal
*/
void PluginSpecPrivate::readDependencyEntry(QXmlStreamReader &reader)
@@ -834,7 +793,6 @@ void PluginSpecPrivate::readDependencyEntry(QXmlStreamReader &reader)
}
/*!
- \fn bool PluginSpecPrivate::provides(const QString &pluginName, const QString &pluginVersion) const
\internal
*/
bool PluginSpecPrivate::provides(const QString &pluginName, const QString &pluginVersion) const
@@ -845,7 +803,6 @@ bool PluginSpecPrivate::provides(const QString &pluginName, const QString &plugi
}
/*!
- \fn QRegExp &PluginSpecPrivate::versionRegExp()
\internal
*/
QRegExp &PluginSpecPrivate::versionRegExp()
@@ -854,7 +811,6 @@ QRegExp &PluginSpecPrivate::versionRegExp()
return reg;
}
/*!
- \fn bool PluginSpecPrivate::isValidVersion(const QString &version)
\internal
*/
bool PluginSpecPrivate::isValidVersion(const QString &version)
@@ -863,7 +819,6 @@ bool PluginSpecPrivate::isValidVersion(const QString &version)
}
/*!
- \fn int PluginSpecPrivate::versionCompare(const QString &version1, const QString &version2)
\internal
*/
int PluginSpecPrivate::versionCompare(const QString &version1, const QString &version2)
@@ -888,7 +843,6 @@ int PluginSpecPrivate::versionCompare(const QString &version1, const QString &ve
}
/*!
- \fn bool PluginSpecPrivate::resolveDependencies(const QList<PluginSpec *> &specs)
\internal
*/
bool PluginSpecPrivate::resolveDependencies(const QList<PluginSpec *> &specs)
@@ -956,7 +910,6 @@ void PluginSpecPrivate::disableIndirectlyIfDependencyDisabled()
}
/*!
- \fn bool PluginSpecPrivate::loadLibrary()
\internal
*/
bool PluginSpecPrivate::loadLibrary()
@@ -1013,7 +966,6 @@ bool PluginSpecPrivate::loadLibrary()
}
/*!
- \fn bool PluginSpecPrivate::initializePlugin()
\internal
*/
bool PluginSpecPrivate::initializePlugin()
@@ -1043,7 +995,6 @@ bool PluginSpecPrivate::initializePlugin()
}
/*!
- \fn bool PluginSpecPrivate::initializeExtensions()
\internal
*/
bool PluginSpecPrivate::initializeExtensions()
@@ -1068,7 +1019,6 @@ bool PluginSpecPrivate::initializeExtensions()
}
/*!
- \fn bool PluginSpecPrivate::delayedInitialize()
\internal
*/
bool PluginSpecPrivate::delayedInitialize()
@@ -1086,7 +1036,6 @@ bool PluginSpecPrivate::delayedInitialize()
}
/*!
- \fn bool PluginSpecPrivate::stop()
\internal
*/
IPlugin::ShutdownFlag PluginSpecPrivate::stop()
@@ -1098,7 +1047,6 @@ IPlugin::ShutdownFlag PluginSpecPrivate::stop()
}
/*!
- \fn bool PluginSpecPrivate::kill()
\internal
*/
void PluginSpecPrivate::kill()
diff --git a/src/libs/qmldebug/qpacketprotocol.cpp b/src/libs/qmldebug/qpacketprotocol.cpp
index d9aa7493a9..4bc56c2173 100644
--- a/src/libs/qmldebug/qpacketprotocol.cpp
+++ b/src/libs/qmldebug/qpacketprotocol.cpp
@@ -265,8 +265,6 @@ QPacketAutoSend QPacketProtocol::send()
}
/*!
- \fn void QPacketProtocol::send(const QPacket & packet)
-
Transmit the \a packet.
*/
void QPacketProtocol::send(const QPacket & p)
diff --git a/src/libs/qmljs/parser/qmlerror.cpp b/src/libs/qmljs/parser/qmlerror.cpp
index cd81100d1e..b097eea812 100644
--- a/src/libs/qmljs/parser/qmlerror.cpp
+++ b/src/libs/qmljs/parser/qmlerror.cpp
@@ -237,7 +237,6 @@ QString QmlError::toString() const
/*!
\relates QmlError
- \fn QDebug operator<<(QDebug debug, const QmlError &error)
Outputs a human readable version of \a error to \a debug.
*/
diff --git a/src/libs/qmljs/persistenttrie.cpp b/src/libs/qmljs/persistenttrie.cpp
index 75db9b5e8b..15bed733fe 100644
--- a/src/libs/qmljs/persistenttrie.cpp
+++ b/src/libs/qmljs/persistenttrie.cpp
@@ -642,8 +642,6 @@ Trie Trie::replaceF(const QHash<QString, QString> &replacements) const
}
/*!
- \fn int matchStrength(const QString &searchStr, const QString &str)
-
Returns a number defining how well the serachStr matches str.
Quite simplistic, looks only at the first match, and prefers contiguos
@@ -692,8 +690,6 @@ public:
}
/*!
- \fn QStringList matchingStrengthSort(const QString &searchStr, QStringList &res)
-
returns a number defining the matching strength of res to the given searchStr
*/
QStringList matchStrengthSort(const QString &searchStr, QStringList &res)
diff --git a/src/libs/utils/savedaction.cpp b/src/libs/utils/savedaction.cpp
index 953c161365..11a908280f 100644
--- a/src/libs/utils/savedaction.cpp
+++ b/src/libs/utils/savedaction.cpp
@@ -191,8 +191,6 @@ QString SavedAction::toString() const
}
/*!
- \fn QAction *SavedAction::updatedAction(const QString &text)
-
Adjust the \c text() of the underlying action.
This can be used to update the item shortly before e.g. a menu is shown.
diff --git a/src/libs/zeroconf/servicebrowser.cpp b/src/libs/zeroconf/servicebrowser.cpp
index 0dd8accf4f..b1e8eebfb5 100644
--- a/src/libs/zeroconf/servicebrowser.cpp
+++ b/src/libs/zeroconf/servicebrowser.cpp
@@ -289,8 +289,6 @@ Service::~Service()
}
/*!
- \fn QString Service::networkInterface()
-
Returns the interface on which the service is reachable.
*/
QNetworkInterface Service::networkInterface() const
diff --git a/src/plugins/coreplugin/actionmanager/actioncontainer.cpp b/src/plugins/coreplugin/actionmanager/actioncontainer.cpp
index bbc804740d..c5e23db1bc 100644
--- a/src/plugins/coreplugin/actionmanager/actioncontainer.cpp
+++ b/src/plugins/coreplugin/actionmanager/actioncontainer.cpp
@@ -290,8 +290,6 @@ void ActionContainerPrivate::addMenu(ActionContainer *before, ActionContainer *m
}
/*!
- * \fn Command *ActionContainer::addSeparator(const Context &context, const Id &group, QAction **outSeparator)
- *
* Adds a separator to the end of the given \a group to the action container, which is enabled
* for a given \a context. The created separator action is returned through \a outSeparator.
*
diff --git a/src/plugins/coreplugin/documentmanager.cpp b/src/plugins/coreplugin/documentmanager.cpp
index 7229797394..e9ef06e595 100644
--- a/src/plugins/coreplugin/documentmanager.cpp
+++ b/src/plugins/coreplugin/documentmanager.cpp
@@ -273,8 +273,6 @@ static void addFileInfo(IDocument *document)
}
/*!
- \fn bool DocumentManager::addFiles(const QList<IDocument *> &documents, bool addWatcher)
-
Adds a list of IDocument's to the collection. If \a addWatcher is true (the default),
the files are added to a file system watcher that notifies the file manager
about file changes.
@@ -362,7 +360,6 @@ static void dump()
*/
/*!
- \fn void DocumentManager::renamedFile(const QString &from, const QString &to)
\brief Tells the file manager that a file has been renamed on disk from within Qt Creator.
Needs to be called right after the actual renaming on disk (i.e. before the file system
@@ -406,8 +403,6 @@ void DocumentManager::fileNameChanged(const QString &oldName, const QString &new
}
/*!
- \fn bool DocumentManager::addFile(IDocument *document, bool addWatcher)
-
Adds a IDocument object to the collection. If \a addWatcher is true (the default),
the file is added to a file system watcher that notifies the file manager
about file changes.
@@ -426,8 +421,6 @@ void DocumentManager::documentDestroyed(QObject *obj)
}
/*!
- \fn bool DocumentManager::removeFile(IDocument *document)
-
Removes a IDocument object from the collection.
Returns true if the file specified by \a document had the addWatcher argument to addDocument() set.
@@ -466,7 +459,6 @@ void DocumentManager::checkForNewFileName()
}
/*!
- \fn QString DocumentManager::fixFileName(const QString &fileName, FixMode fixmode)
Returns a guaranteed cleaned path in native form. If the file exists,
it will either be a cleaned absolute file path (fixmode == KeepLinks), or
a cleaned canonical file path (fixmode == ResolveLinks).
@@ -490,8 +482,6 @@ QString DocumentManager::fixFileName(const QString &fileName, FixMode fixmode)
}
/*!
- \fn QList<IDocument*> DocumentManager::modifiedFiles() const
-
Returns the list of IDocument's that have been modified.
*/
QList<IDocument *> DocumentManager::modifiedDocuments()
@@ -512,8 +502,6 @@ QList<IDocument *> DocumentManager::modifiedDocuments()
}
/*!
- \fn void DocumentManager::expectFileChange(const QString &fileName)
-
Any subsequent change to \a fileName is treated as a expected file change.
\see DocumentManager::unexpectFileChange(const QString &fileName)
@@ -538,8 +526,6 @@ static void updateExpectedState(const QString &fileName)
}
/*!
- \fn void DocumentManager::unexpectFileChange(const QString &fileName)
-
Any change to \a fileName are unexpected again.
\see DocumentManager::expectFileChange(const QString &fileName)
@@ -561,8 +547,6 @@ void DocumentManager::unexpectFileChange(const QString &fileName)
updateExpectedState(fixedResolvedName);
}
-/*!
- \fn QList<IDocument*> DocumentManager::saveModifiedFilesSilently(const QList<IDocument*> &documents)
Tries to save the files listed in \a documents. The \a cancelled argument is set to true
if the user cancelled the dialog. Returns the files that could not be saved. If the files
@@ -575,8 +559,6 @@ QList<IDocument *> DocumentManager::saveModifiedDocumentsSilently(const QList<ID
}
/*!
- \fn QList<IDocument*> DocumentManager::saveModifiedFiles(const QList<IDocument *> &documents, bool *cancelled, const QString &message, const QString &alwaysSaveMessage, bool *alwaysSave)
-
Asks the user whether to save the files listed in \a documents .
Opens a dialog with the given \a message, and a additional
text that should be used to ask if the user wants to enabled automatic save
@@ -758,8 +740,6 @@ QString DocumentManager::getSaveFileNameWithExtension(const QString &title, cons
}
/*!
- \fn QString DocumentManager::getSaveAsFileName(IDocument *document, const QString &filter, QString *selectedFilter)
-
Asks the user for a new file name (Save File As) for /arg document.
*/
QString DocumentManager::getSaveAsFileName(const IDocument *document, const QString &filter, QString *selectedFilter)
@@ -794,10 +774,6 @@ QString DocumentManager::getSaveAsFileName(const IDocument *document, const QStr
}
/*!
- \fn QStringList DocumentManager::getOpenFileNames(const QString &filters,
- const QString pathIn,
- QString *selectedFilter)
-
Asks the user for a set of file names to be opened. The \a filters
and \a selectedFilter parameters is interpreted like in
QFileDialog::getOpenFileNames(), \a pathIn specifies a path to open the dialog
@@ -1078,8 +1054,6 @@ void DocumentManager::syncWithEditor(const QList<Core::IContext *> &context)
}
/*!
- \fn void DocumentManager::addToRecentFiles(const QString &fileName, const QString &editorId)
-
Adds the \a fileName to the list of recent files. Associates the file to
be reopened with an editor of the given \a editorId, if possible.
\a editorId defaults to the empty id, which means to let the system figure out
@@ -1103,8 +1077,6 @@ void DocumentManager::addToRecentFiles(const QString &fileName, const Id &editor
}
/*!
- \fn void DocumentManager::clearRecentFiles()
-
Clears the list of recent files. Should only be called by
the core plugin when the user chooses to clear it.
*/
@@ -1114,8 +1086,6 @@ void DocumentManager::clearRecentFiles()
}
/*!
- \fn QStringList DocumentManager::recentFiles() const
-
Returns the list of recent files.
*/
QList<DocumentManager::RecentFile> DocumentManager::recentFiles()
diff --git a/src/plugins/coreplugin/progressmanager/futureprogress.cpp b/src/plugins/coreplugin/progressmanager/futureprogress.cpp
index 917c3b3ec5..da6a6a1dcd 100644
--- a/src/plugins/coreplugin/progressmanager/futureprogress.cpp
+++ b/src/plugins/coreplugin/progressmanager/futureprogress.cpp
@@ -145,7 +145,6 @@ FutureProgress::FutureProgress(QWidget *parent) :
}
/*!
- \fn FutureProgress::~FutureProgress()
\internal
*/
FutureProgress::~FutureProgress()
@@ -155,7 +154,6 @@ FutureProgress::~FutureProgress()
}
/*!
- \fn void FutureProgress::setWidget(QWidget *widget)
Sets the \a widget to show below the progress bar.
This will be destroyed when the progress indicator is destroyed.
Default is to show no widget below the progress indicator.
@@ -172,7 +170,6 @@ void FutureProgress::setWidget(QWidget *widget)
}
/*!
- \fn void FutureProgress::setTitle(const QString &title)
Changes the \a title of the progress indicator.
*/
void FutureProgress::setTitle(const QString &title)
@@ -181,7 +178,6 @@ void FutureProgress::setTitle(const QString &title)
}
/*!
- \fn QString FutureProgress::title() const
Returns the title of the progress indicator.
*/
QString FutureProgress::title() const
@@ -268,7 +264,6 @@ void FutureProgress::setProgressText(const QString &text)
}
/*!
- \fn void FutureProgress::setFuture(const QFuture<void> &future)
\internal
*/
void FutureProgress::setFuture(const QFuture<void> &future)
@@ -277,7 +272,6 @@ void FutureProgress::setFuture(const QFuture<void> &future)
}
/*!
- \fn QFuture<void> FutureProgress::future() const
Returns a QFuture object that represents this running task.
*/
QFuture<void> FutureProgress::future() const
@@ -286,7 +280,6 @@ QFuture<void> FutureProgress::future() const
}
/*!
- \fn void FutureProgress::mousePressEvent(QMouseEvent *event)
\internal
*/
void FutureProgress::mousePressEvent(QMouseEvent *event)
@@ -304,7 +297,6 @@ void FutureProgress::paintEvent(QPaintEvent *)
}
/*!
- \fn bool FutureProgress::hasError() const
Returns the error state of this progress indicator.
*/
bool FutureProgress::hasError() const
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 0b007674bc..e8f80920f3 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -2412,7 +2412,6 @@ void GdbEngine::handleExecuteReturn(const GdbResponse &response)
}
/*!
- \fn void Debugger::Internal::GdbEngine::setTokenBarrier()
\brief Discard the results of all pending watch-updating commands.
This method is called at the beginning of all step/next/finish etc.
@@ -2420,7 +2419,6 @@ void GdbEngine::handleExecuteReturn(const GdbResponse &response)
If non-watch-updating commands with call-backs are still in the pipe,
it will complain.
*/
-
void GdbEngine::setTokenBarrier()
{
//QTC_ASSERT(m_nonDiscardableCount == 0, /**/);
diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp
index a250660763..43106b36aa 100644
--- a/src/plugins/debugger/watchwindow.cpp
+++ b/src/plugins/debugger/watchwindow.cpp
@@ -232,9 +232,9 @@ static int memberVariableRecursion(const QAbstractItemModel *model,
return childCount;
}
-/*!
- \fn variableMemoryMarkup()
+typedef QList<MemoryMarkup> MemoryMarkupList;
+/*!
\brief Creates markup for a variable in the memory view.
Marks the visible children with alternating colors in the parent, that is, for
@@ -272,9 +272,6 @@ static int memberVariableRecursion(const QAbstractItemModel *model,
\sa Debugger::Internal::MemoryViewWidget
*/
-
-typedef QList<MemoryMarkup> MemoryMarkupList;
-
static MemoryMarkupList
variableMemoryMarkup(const QAbstractItemModel *model,
const QModelIndex &modelIndex,
diff --git a/src/plugins/find/searchresultwindow.cpp b/src/plugins/find/searchresultwindow.cpp
index 1a45816174..cda06a6464 100644
--- a/src/plugins/find/searchresultwindow.cpp
+++ b/src/plugins/find/searchresultwindow.cpp
@@ -265,7 +265,6 @@ using namespace Find::Internal;
SearchResultWindow *SearchResultWindow::m_instance = 0;
/*!
- \fn SearchResultWindow::SearchResultWindow()
\internal
*/
SearchResultWindow::SearchResultWindow(QWidget *newSearchPanel)
@@ -305,7 +304,6 @@ SearchResultWindow::SearchResultWindow(QWidget *newSearchPanel)
}
/*!
- \fn SearchResultWindow::~SearchResultWindow()
\internal
*/
SearchResultWindow::~SearchResultWindow()
@@ -318,7 +316,6 @@ SearchResultWindow::~SearchResultWindow()
}
/*!
- \fn SearchResultWindow *SearchResultWindow::instance()
\brief Returns the single shared instance of the Search Results window.
*/
SearchResultWindow *SearchResultWindow::instance()
@@ -327,7 +324,6 @@ SearchResultWindow *SearchResultWindow::instance()
}
/*!
- \fn void SearchResultWindow::visibilityChanged(bool)
\internal
*/
void SearchResultWindow::visibilityChanged(bool visible)
@@ -337,7 +333,6 @@ void SearchResultWindow::visibilityChanged(bool visible)
}
/*!
- \fn QWidget *SearchResultWindow::outputWidget(QWidget *)
\internal
*/
QWidget *SearchResultWindow::outputWidget(QWidget *)
@@ -346,7 +341,6 @@ QWidget *SearchResultWindow::outputWidget(QWidget *)
}
/*!
- \fn QList<QWidget*> SearchResultWindow::toolBarWidgets() const
\internal
*/
QList<QWidget*> SearchResultWindow::toolBarWidgets() const
@@ -413,7 +407,6 @@ SearchResult *SearchResultWindow::startNewSearch(const QString &label,
}
/*!
- \fn void SearchResultWindow::clearContents()
\brief Clears the current contents in the search result window.
*/
void SearchResultWindow::clearContents()
@@ -434,7 +427,6 @@ void SearchResultWindow::clearContents()
}
/*!
- \fn bool SearchResultWindow::hasFocus()
\internal
*/
bool SearchResultWindow::hasFocus() const
@@ -443,7 +435,6 @@ bool SearchResultWindow::hasFocus() const
}
/*!
- \fn bool SearchResultWindow::canFocus()
\internal
*/
bool SearchResultWindow::canFocus() const
@@ -454,7 +445,6 @@ bool SearchResultWindow::canFocus() const
}
/*!
- \fn void SearchResultWindow::setFocus()
\internal
*/
void SearchResultWindow::setFocus()
@@ -466,7 +456,6 @@ void SearchResultWindow::setFocus()
}
/*!
- \fn void SearchResultWindow::setTextEditorFont(const QFont &font)
\internal
*/
void SearchResultWindow::setTextEditorFont(const QFont &font,
@@ -497,7 +486,6 @@ void SearchResultWindow::openNewSearchPanel()
}
/*!
- \fn void SearchResultWindow::handleExpandCollapseToolButton(bool checked)
\internal
*/
void SearchResultWindow::handleExpandCollapseToolButton(bool checked)
@@ -515,7 +503,6 @@ void SearchResultWindow::handleExpandCollapseToolButton(bool checked)
}
/*!
- \fn void SearchResultWindow::readSettings()
\internal
*/
void SearchResultWindow::readSettings()
@@ -527,7 +514,6 @@ void SearchResultWindow::readSettings()
}
/*!
- \fn void SearchResultWindow::writeSettings()
\internal
*/
void SearchResultWindow::writeSettings()
@@ -539,7 +525,6 @@ void SearchResultWindow::writeSettings()
}
/*!
- \fn int SearchResultWindow::priorityInStatusBar() const
\internal
*/
int SearchResultWindow::priorityInStatusBar() const
@@ -548,7 +533,6 @@ int SearchResultWindow::priorityInStatusBar() const
}
/*!
- \fn bool SearchResultWindow::canNext()
\internal
*/
bool SearchResultWindow::canNext() const
@@ -559,7 +543,6 @@ bool SearchResultWindow::canNext() const
}
/*!
- \fn bool SearchResultWindow::canPrevious()
\internal
*/
bool SearchResultWindow::canPrevious() const
@@ -568,7 +551,6 @@ bool SearchResultWindow::canPrevious() const
}
/*!
- \fn void SearchResultWindow::goToNext()
\internal
*/
void SearchResultWindow::goToNext()
@@ -579,7 +561,6 @@ void SearchResultWindow::goToNext()
}
/*!
- \fn void SearchResultWindow::goToPrev()
\internal
*/
void SearchResultWindow::goToPrev()
@@ -590,7 +571,6 @@ void SearchResultWindow::goToPrev()
}
/*!
- \fn bool SearchResultWindow::canNavigate()
\internal
*/
bool SearchResultWindow::canNavigate() const
@@ -599,7 +579,6 @@ bool SearchResultWindow::canNavigate() const
}
/*!
- \fn SearchResult::SearchResult(SearchResultWidget *widget)
\internal
*/
SearchResult::SearchResult(SearchResultWidget *widget)
@@ -620,7 +599,6 @@ SearchResult::SearchResult(SearchResultWidget *widget)
}
/*!
- \fn void SearchResult::setUserData(const QVariant &data)
\brief Attach some random \a data to this search, that you can use later.
\sa userData()
@@ -631,7 +609,6 @@ void SearchResult::setUserData(const QVariant &data)
}
/*!
- \fn void SearchResult::userData()
\brief Return the data that was attached to this search by calling setUserData().
\sa setUserData()
@@ -642,7 +619,6 @@ QVariant SearchResult::userData() const
}
/*!
- \fn QString SearchResult::textToReplace() const
\brief Returns the text that should replace the text in search results.
*/
QString SearchResult::textToReplace() const
@@ -661,7 +637,6 @@ void SearchResult::setSearchAgainSupported(bool supported)
}
/*!
- \fn void SearchResult::addResult(const QString &fileName, int lineNumber, const QString &rowText, int searchTermStart, int searchTermLength, const QVariant &userData)
\brief Adds a single result line to the search results.
The \a fileName, \a lineNumber and \a rowText are shown in the result line.
@@ -681,7 +656,6 @@ void SearchResult::addResult(const QString &fileName, int lineNumber, const QStr
}
/*!
- \fn void SearchResult::addResults(const QList<SearchResultItem> &items, SearchResult::AddMode mode)
\brief Adds all of the given search result \a items to the search
results window.
@@ -694,7 +668,6 @@ void SearchResult::addResults(const QList<SearchResultItem> &items, AddMode mode
}
/*!
- \fn void SearchResult::finishSearch()
\brief Notifies the search result window that the current search
has finished, and the UI should reflect that.
*/
@@ -704,7 +677,6 @@ void SearchResult::finishSearch(bool canceled)
}
/*!
- \fn void SearchResult::setTextToReplace(const QString &textToReplace)
\brief Sets the value in the UI element that allows the user to type
the text that should replace text in search results to \a textToReplace.
*/
diff --git a/src/plugins/locator/locatorplugin.cpp b/src/plugins/locator/locatorplugin.cpp
index caa5102f0b..e7758facbe 100644
--- a/src/plugins/locator/locatorplugin.cpp
+++ b/src/plugins/locator/locatorplugin.cpp
@@ -211,8 +211,6 @@ void LocatorPlugin::saveSettings()
}
/*!
- \fn QList<ILocatorFilter*> LocatorPlugin::filters()
-
Return all filters, including the ones created by the user.
*/
QList<ILocatorFilter*> LocatorPlugin::filters()
@@ -221,8 +219,6 @@ QList<ILocatorFilter*> LocatorPlugin::filters()
}
/*!
- \fn QList<ILocatorFilter*> LocatorPlugin::customFilters()
-
This returns a subset of all the filters, that contains only the filters that
have been created by the user at some point (maybe in a previous session).
*/
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index d25442b026..d2098f02ef 100644
--- a/src/plugins/projectexplorer/projectexplorer.cpp
+++ b/src/plugins/projectexplorer/projectexplorer.cpp
@@ -1521,8 +1521,6 @@ static inline QStringList projectFileGlobs()
}
/*!
- \fn void ProjectExplorerPlugin::restoreSession()
-
This method is connected to the ICore::coreOpened signal. If
there was no session explicitly loaded, it creates an empty new
default session and puts the list of recent projects and sessions
diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp
index 725d2b1132..8f0bf410a9 100644
--- a/src/plugins/projectexplorer/runconfiguration.cpp
+++ b/src/plugins/projectexplorer/runconfiguration.cpp
@@ -104,6 +104,9 @@ bool ProcessHandle::equals(const ProcessHandle &rhs) const
}
+/*!
+ \brief Returns the widget used to configure this run configuration. Ownership is transferred to the caller
+*/
RunConfigWidget *IRunConfigurationAspect::createConfigurationWidget()
{
return 0;
@@ -200,12 +203,6 @@ bool RunConfiguration::ensureConfigured(QString *errorMessage)
}
-/*!
- \fn virtual QWidget *ProjectExplorer::RunConfiguration::createConfigurationWidget()
-
- \brief Returns the widget used to configure this run configuration. Ownership is transferred to the caller
-*/
-
BuildConfiguration *RunConfiguration::activeBuildConfiguration() const
{
if (!target())
diff --git a/src/plugins/projectexplorer/session.cpp b/src/plugins/projectexplorer/session.cpp
index 445db5f031..cb493df466 100644
--- a/src/plugins/projectexplorer/session.cpp
+++ b/src/plugins/projectexplorer/session.cpp
@@ -373,8 +373,6 @@ bool SessionManager::save()
}
/*!
- \fn bool SessionManager::closeAllProjects()
-
Closes all projects
*/
void SessionManager::closeAllProjects()
diff --git a/src/plugins/texteditor/syntaxhighlighter.cpp b/src/plugins/texteditor/syntaxhighlighter.cpp
index ed75207816..de9c5acd09 100644
--- a/src/plugins/texteditor/syntaxhighlighter.cpp
+++ b/src/plugins/texteditor/syntaxhighlighter.cpp
@@ -553,8 +553,6 @@ void SyntaxHighlighter::applyFormatToSpaces(const QString &text, const QTextChar
}
/*!
- \fn QTextCharFormat SyntaxHighlighter::format(int position) const
-
Returns the format at \a position inside the syntax highlighter's
current text block.
*/