From c9a54c975d004916669d3a3ef062e3c0b2c21512 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 11 Feb 2009 16:05:46 +0100 Subject: Fixes: compile fix mac/win --- src/plugins/debugger/gdbengine.cpp | 8 ++++---- 1 file 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 { -- cgit v1.2.1