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;