summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@digia.com>2013-05-22 00:49:51 -0700
committerDavid Schulz <david.schulz@digia.com>2013-05-28 08:25:16 +0200
commit92a15600a44346258affb65d266b5c3b182cb89d (patch)
tree36e8c3d273c7ed4147c1563da3165c978e5723c0 /src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
parent5374a4f3cd6e3b24f30cce9c1db62ea7a73ce83f (diff)
downloadqt-creator-92a15600a44346258affb65d266b5c3b182cb89d.tar.gz
Debugger: Add options page for cdb paths.
Change-Id: Iafb5fd88c101e716f538edc44113d21a880f2d3f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp')
-rw-r--r--src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
index 5b9b5a5998..617a7c2994 100644
--- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
+++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
@@ -208,8 +208,7 @@ int CdbSymbolPathListEditor::indexOfSymbolPath(const QStringList &paths,
return -1;
}
-bool CdbSymbolPathListEditor::promptToAddSymbolPaths(const QString &settingsGroup,
- QStringList *symbolPaths)
+bool CdbSymbolPathListEditor::promptToAddSymbolPaths(QStringList *symbolPaths)
{
const int indexOfSymbolServer =
CdbSymbolPathListEditor::indexOfSymbolPath(*symbolPaths, SymbolServerPath);
@@ -220,7 +219,7 @@ bool CdbSymbolPathListEditor::promptToAddSymbolPaths(const QString &settingsGrou
|| (indexOfSymbolServer != -1 && indexOfSymbolCache != -1))
return false;
- const QString nagSymbolServerKey = settingsGroup + QLatin1String("/NoPromptSymbolCache");
+ const QString nagSymbolServerKey = QLatin1String("CDB2/NoPromptSymbolCache");
bool noFurtherNagging = Core::ICore::settings()->value(nagSymbolServerKey, false).toBool();
if (noFurtherNagging)
return false;