diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2010-01-22 17:15:33 +0100 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2010-01-22 17:15:33 +0100 |
commit | d348e5099b3f64568c7d81c7f5cb5aacad4823be (patch) | |
tree | a4b8c84a463fa4e28222fae442415ea01b3b533a /src/plugins/debugger/cdb/cdboptionspage.cpp | |
parent | 4537e2be6cb411717ece8ff80f27ec49e784cae3 (diff) | |
download | qt-creator-d348e5099b3f64568c7d81c7f5cb5aacad4823be.tar.gz |
Debugger/CDB: Split engine for testing/scripting purposes.
Diffstat (limited to 'src/plugins/debugger/cdb/cdboptionspage.cpp')
-rw-r--r-- | src/plugins/debugger/cdb/cdboptionspage.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/debugger/cdb/cdboptionspage.cpp b/src/plugins/debugger/cdb/cdboptionspage.cpp index f8a97f4e67..583f6d7792 100644 --- a/src/plugins/debugger/cdb/cdboptionspage.cpp +++ b/src/plugins/debugger/cdb/cdboptionspage.cpp @@ -30,6 +30,7 @@ #include "cdboptionspage.h" #include "cdboptions.h" #include "debuggerconstants.h" +#include "coreengine.h" #include <coreplugin/icore.h> @@ -102,7 +103,7 @@ void CdbOptionsPageWidget::autoDetect() { QString path; QStringList checkedDirectories; - const bool ok = CdbOptions::autoDetectPath(&path, &checkedDirectories); + const bool ok = CdbCore::CoreEngine::autoDetectPath(&path, &checkedDirectories); m_ui.cdbPathGroupBox->setChecked(ok); if (ok) { m_ui.pathChooser->setPath(path); |