From bfbf9443d63d794a1663bdda2f6cdeeeba0c74b4 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 24 Jun 2014 16:40:31 +0200 Subject: [PATCH] Variables: Remove some outdated documentation Change-Id: I63d6c0ec006c586729ec4352b56c1275456a8ad3 Reviewed-by: Eike Ziller --- src/plugins/coreplugin/variablemanager.cpp | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/plugins/coreplugin/variablemanager.cpp b/src/plugins/coreplugin/variablemanager.cpp index 7981e222588..d66737cbc2c 100644 --- a/src/plugins/coreplugin/variablemanager.cpp +++ b/src/plugins/coreplugin/variablemanager.cpp @@ -87,10 +87,8 @@ public: \section1 Providing Variable Values - Plugins can register variables together with a description through registerVariable(), - and then need to connect to the variableUpdateRequested() signal to actually give - the variable its value when requested. A typical setup is to register - variables in the Plugin::initialize() function. + Plugins can register variables together with a description through registerVariable(). + A typical setup is to register variables in the Plugin::initialize() function. \code bool MyPlugin::initialize(const QStringList &arguments, QString *errorString) @@ -166,12 +164,6 @@ public: */ -/*! - * \fn void VariableManager::variableUpdateRequested(const QByteArray &variable) - * Signals that the value of the \a variable should be updated because someone requests its value. - * Handlers of this signal should call insert() and return as fast as possible. - */ - static VariableManager *variableManagerInstance = 0; static VariableManagerPrivate *d;