diff options
author | hjk <[email protected]> | 2013-09-05 14:36:20 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2013-09-05 15:37:43 +0200 |
commit | ad58c2bb4445567ecc349a0987bf3f8a781cc883 (patch) | |
tree | 243654c2889746d14dfe8a0c6ccf9471cbb611af /src/plugins/debugger/debuggerplugin.cpp | |
parent | e5c7ac61ece24e956badea69cc45dd8bc5437790 (diff) |
BuildManager: apply 'static' pattern
Change-Id: I00bb591c027a22088d5f1feedc84aa28523dcca2
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index b31f6b5d9f2..a4148a6c79a 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -3490,8 +3490,7 @@ void DebuggerPluginPrivate::testProjectEvaluated() QString fileName = m_testProject->projectFilePath(); QVERIFY(!fileName.isEmpty()); qWarning("Project %s loaded", qPrintable(fileName)); - connect(ProjectExplorerPlugin::instance()->buildManager(), - SIGNAL(buildQueueFinished(bool)), + connect(BuildManager::instance(), SIGNAL(buildQueueFinished(bool)), SLOT(testProjectBuilt(bool))); ProjectExplorerPlugin::instance()->buildProject(m_testProject); } |