diff options
author | hjk <[email protected]> | 2009-02-11 16:05:46 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2009-02-11 16:05:46 +0100 |
commit | c9a54c975d004916669d3a3ef062e3c0b2c21512 (patch) | |
tree | b2fd0116e644c4b6d55923f7ff6972c1cc39e16a | |
parent | dddd905bc77301db7a52ce9fe4a7ed9331eef590 (diff) |
Fixes: compile fix mac/win0.9.2-rc1
-rw-r--r-- | src/plugins/debugger/gdbengine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp index 9e818be0d1a..f6413db72f9 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 { |