summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/cdb/cdbexceptionutils.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-01-22 17:15:33 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-01-22 17:15:33 +0100
commitd348e5099b3f64568c7d81c7f5cb5aacad4823be (patch)
treea4b8c84a463fa4e28222fae442415ea01b3b533a /src/plugins/debugger/cdb/cdbexceptionutils.cpp
parent4537e2be6cb411717ece8ff80f27ec49e784cae3 (diff)
downloadqt-creator-d348e5099b3f64568c7d81c7f5cb5aacad4823be.tar.gz
Debugger/CDB: Split engine for testing/scripting purposes.
Diffstat (limited to 'src/plugins/debugger/cdb/cdbexceptionutils.cpp')
-rw-r--r--src/plugins/debugger/cdb/cdbexceptionutils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/cdb/cdbexceptionutils.cpp b/src/plugins/debugger/cdb/cdbexceptionutils.cpp
index 2c9b49d413..a68544f7bc 100644
--- a/src/plugins/debugger/cdb/cdbexceptionutils.cpp
+++ b/src/plugins/debugger/cdb/cdbexceptionutils.cpp
@@ -122,7 +122,7 @@ bool ExceptionBlocker::getExceptionParameters(CIDebugControl *ctrl, ULONG exCode
{
const HRESULT ihr = ctrl->GetExceptionFilterParameters(1, &exCode, 0, result);
if (FAILED(ihr)) {
- *errorMessage = msgComFailed("GetExceptionFilterParameters", ihr);
+ *errorMessage = CdbCore::msgComFailed("GetExceptionFilterParameters", ihr);
return false;
}
return true;
@@ -132,7 +132,7 @@ bool ExceptionBlocker::setExceptionParameters(CIDebugControl *ctrl, const DEBUG_
{
const HRESULT ihr = ctrl->SetExceptionFilterParameters(1, const_cast<DEBUG_EXCEPTION_FILTER_PARAMETERS*>(&p));
if (FAILED(ihr)) {
- *errorMessage = msgComFailed("GetExceptionFilterParameters", ihr);
+ *errorMessage = CdbCore::msgComFailed("GetExceptionFilterParameters", ihr);
return false;
}
return true;