summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-02-11 16:05:46 +0100
committerhjk <qtc-committer@nokia.com>2009-02-11 16:05:46 +0100
commitc9a54c975d004916669d3a3ef062e3c0b2c21512 (patch)
treeb2fd0116e644c4b6d55923f7ff6972c1cc39e16a
parentdddd905bc77301db7a52ce9fe4a7ed9331eef590 (diff)
downloadqt-creator-0.9.2-rc1.tar.gz
Fixes: compile fix mac/win0.9.2-rc1
-rw-r--r--src/plugins/debugger/gdbengine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp
index 9e818be0d1..f6413db72f 100644
--- a/src/plugins/debugger/gdbengine.cpp
+++ b/src/plugins/debugger/gdbengine.cpp
@@ -3985,9 +3985,9 @@ void GdbEngine::tryLoadCustomDumpers()
//if (qq->useFastStart())
// sendCommand("set stop-on-solib-events 0");
QString flag = QString::number(RTLD_NOW);
- sendSyncronizedCommand("call (void)dlopen(\"" + lib + "\", " + flag + ")",
+ sendSynchronizedCommand("call (void)dlopen(\"" + lib + "\", " + flag + ")",
WatchDumpCustomSetup);
- sendSyncronizedCommand("sharedlibrary " + dotEscape(lib));
+ sendSynchronizedCommand("sharedlibrary " + dotEscape(lib));
//if (qq->useFastStart())
// sendCommand("set stop-on-solib-events 1");
} else {
@@ -4002,9 +4002,9 @@ void GdbEngine::tryLoadCustomDumpers()
// sendCommand("set stop-on-solib-events 0");
//sendCommand("handle SIGSEGV pass stop print");
//sendCommand("set unwindonsignal off");
- sendSyncronizedCommand("call LoadLibraryA(\"" + lib + "\")",
+ sendSynchronizedCommand("call LoadLibraryA(\"" + lib + "\")",
WatchDumpCustomSetup);
- sendSyncronizedCommand("sharedlibrary " + dotEscape(lib));
+ sendSynchronizedCommand("sharedlibrary " + dotEscape(lib));
//if (qq->useFastStart())
// sendCommand("set stop-on-solib-events 1");
} else {