diff options
author | con <qtc-committer@nokia.com> | 2010-07-13 13:36:47 +0200 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2010-07-13 15:25:21 +0200 |
commit | b3dbc4b4e4fd97c9a3327d72272402d1cc6cd5f4 (patch) | |
tree | cc624c18299085c262fa1963e48fadc3e6ed9e6c /src/plugins/debugger/debuggerplugin.h | |
parent | adf2c1b0dacf0f89954cabe25d7d0524144d31a2 (diff) | |
download | qt-creator-b3dbc4b4e4fd97c9a3327d72272402d1cc6cd5f4.tar.gz |
Add flag to IPlugin::aboutToShutdown that allows asynchronous shutdown.
If a plugin requests asyncronous shutdown, the shutdown sequence does
not continue to deleting the plugins before it has sent a
asynchronousShutdownFinished signal. During that time an event loop
is running.
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index d3fadff4c6..b183c3c855 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -121,7 +121,7 @@ private: friend class Internal::DebuggerListener ; bool initialize(const QStringList &arguments, QString *errorMessage); - void aboutToShutdown(); + ShutdownFlag aboutToShutdown(); void extensionsInitialized(); void remoteCommand(const QStringList &options, const QStringList &arguments); |