From 950cbe85977c1a432f62baee6eb28d874bea6389 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 29 Sep 2011 17:50:51 +0200 Subject: [PATCH] Build fix for windows. Change-Id: I959ae0bd0938744b4afc55a804e476483ca9fdb5 Reviewed-on: http://codereview.qt-project.org/5810 Reviewed-by: Eike Ziller --- src/plugins/debugger/cdb/cdbengine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index bdc0ed018c8..6fe10d932d7 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -405,8 +405,8 @@ bool checkCdbConfiguration(const DebuggerStartParameters &sp, ConfigurationCheck if (cdbBinary(sp).isEmpty()) { check->errorDetails.push_back(msgNoCdbBinaryForToolChain(sp.toolChainAbi)); - check->settingsCategory = QLatin1String(ProjectExplorer::Constants::TOOLCHAIN_SETTINGS_CATEGORY); - check->settingsPage = QLatin1String(ProjectExplorer::Constants::TOOLCHAIN_SETTINGS_CATEGORY); + check->settingsCategory = QLatin1String(ProjectExplorer::Constants::PROJECTEXPLORER_SETTINGS_CATEGORY); + check->settingsPage = QLatin1String(ProjectExplorer::Constants::PROJECTEXPLORER_SETTINGS_CATEGORY); return false; }