From e46590390e95d8bcb0d2d47a3fb865cc0a7e059f Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 25 Jan 2011 11:52:50 +0100 Subject: [PATCH] Debugger[CDB]: Prevent debugger log from showing. caused by overlapping flags and thus 'Stop at breakpoint' being reported as an error. --- src/plugins/debugger/cdb/cdbengine.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index cc2f3c881f7..1e5fe3528e2 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -1561,13 +1561,13 @@ enum StopActionFlags // Report options StopReportLog = 0x1, StopReportStatusMessage = 0x2, - StopReportParseError = 0x2, - StopShowExceptionMessageBox = 0x4, + StopReportParseError = 0x4, + StopShowExceptionMessageBox = 0x8, // Notify stop or just continue - StopNotifyStop = 0x8, - StopIgnoreContinue = 0x10, + StopNotifyStop = 0x10, + StopIgnoreContinue = 0x20, // Hit on break in artificial stop thread (created by DebugBreak()). - StopInArtificialThread = 0x20 + StopInArtificialThread = 0x40 }; unsigned CdbEngine::examineStopReason(const QByteArray &messageIn,