Hello,
I have a command-line-project where the debugger refuses to work properly,
while it seem just fine in my GUI-Projects.
When stopping at a breakpoint (and generally quite often) I get the
message 'Debugging helpers not found' in the debugging Toolbar. I've
attached the contents of the right debugger pane in a text file.
What is strange about this is, that debugging (and the helpers) work(s)
just fine with my other projects (which are all GUI projects). So I can't
help but think if it has something to do with the way the console project
is written, or if the helpers have some sort of requirement to work. The
project was created from the QtCreator template "Qt4 Console Application"
and I then proceeded to fill out the main-function, see the illustrating
main function at the end of the mail. I couldn't find anything on this in
the documentation so I thought I'd ask here...
I think it's also noteworthy that I've had the debugger supposedly stop at
breakpoints, instead the stop occurred nowhere near a breakpoint.
Unfortunately this was a while ago and I don't remember the exact
circumstances or I'd have included them here.
My System here is Windows7, Qt SDK 2009.05 (so it's QtCreator 1.3.0 and Qt
4.6.0), the same also occurs on my WinXP machine though (same Qt Versions).
Thank you in advance :)
// the promised example-main function
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
/*
This is where I do the actual processing the tool is supposed to
perform
/*
return a.exec();
}dState changed from <unknown>(-1) to DebuggerNotReady(0).
d0x519ffc00x00x51b77b83
sStarting debugger for tool chain 'MinGW'...
dDebugger settings:
dUseAlternatingRowColours: false (default: false)
dUseMessageBoxForSignals: true (default: true)
dAutoQuit: false (default: false)
dLogTimeStamps: false (default: false)
dUseDebuggingHelper: true (default: true)
dUseCustomDebuggingHelperLocation: false (default: false)
dCustomDebuggingHelperLocation: (default: )
dDebugDebuggingHelpers: false (default: false)
dUseCodeModel: true (default: true)
dUseToolTips: false (default: false)
dUseToolTipsInLocalsView: false (default: false)
dUseToolTipsInBreakpointsView: false (default: false)
dUseAddressInBreakpointsView: false (default: false)
dUseAddressInStackView: false (default: false)
dLocation: C:\Qt\mingw\bin\gdb.exe (default: gdb)
dEnvironment: (default: )
dScriptFile: (default: )
dMaximalStackDepth: 20 (default: 20)
dListSourceFiles: false (default: false)
dSkipKnownFrames: false (default: false)
dEnableReverseDebugging: false (default: false)
dAllPluginBreakpoints: true (default: true)
dSelectedPluginBreakpoints: false (default: false)
dNoPluginBreakpoints: false (default: false)
dSelectedPluginBreakpointsPattern: .* (default: .*)
dC:/Users/Creat/Documents/Studienarbeit/GraphGen/debug/GraphGen.exe0x519ffc0
dState changed from DebuggerNotReady(0) to EngineStarting(1).
dState changed from EngineStarting(1) to AdapterStarting(2).
dTRYING TO START ADAPTER
dSTARTING GDB
dGDB STARTED, INITIALIZING IT
<1show version
<2-interpreter-exec console "help bb"
<3set print static-members off
<4set breakpoint pending on
<5set print elements 10000
<6set overload-resolution off
<7handle SIGSEGV nopass stop print
<8set unwindonsignal on
<9set width 0
<10set height 0
dState changed from AdapterStarting(2) to AdapterStarted(3).
dADAPTER SUCCESSFULLY STARTED
sStarting inferior...
dState changed from AdapterStarted(3) to InferiorStarting(6).
d03152
<11attach 3152
>~"GNU gdb 6.8\n"
>~"Copyright (C) 2008 Free Software Foundation, Inc.\n"
>~"License GPLv3+: GNU GPL version 3 or later
><http://gnu.org/licenses/gpl.html>\n"
>~"This is free software: you are free to change and redistribute it.\n"
>~"There is NO WARRANTY, to the extent permitted by law. Type \"show
>copying\"\n"
>~"and \"show warranty\" for details.\n"
>~"This GDB was configured as \"i686-pc-mingw32\".\n"
>&"show version\n"
>~"GNU gdb 6.8\n"
>~"Copyright (C) 2008 Free Software Foundation, Inc.\n"
>~"License GPLv3+: GNU GPL version 3 or later
><http://gnu.org/licenses/gpl.html>\n"
>~"This is free software: you are free to change and redistribute it.\n"
>~"There is NO WARRANTY, to the extent permitted by law. Type \"show
>copying\"\n"
>~"and \"show warranty\" for details.\n"
>~"This GDB was configured as \"i686-pc-mingw32\".\n"
>1^done
dVERSION: 1^done,{logstreamoutput="show version\n",consolestreamoutput="GNU gdb
6.8\nCopyright (C) 2008 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL
version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software:
you are free to change and redistribute it.\nThere is NO WARRANTY, to the
extent permitted by law. Type \"show copying\"\nand \"show warranty\" for
details.\nThis GDB was configured as \"i686-pc-mingw32\".\nGNU gdb
6.8\nCopyright (C) 2008 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL
version 3 or later <http://gnu.org/licenses/gpl.html>\nThis is free software:
you are free to change and redistribute it.\nThere is NO WARRANTY, to the
extent permitted by law. Type \"show copying\"\nand \"show warranty\" for
details.\nThis GDB was configured as \"i686-pc-mingw32\".\n"}
d
dGDB VERSION: 60800, BUILD: 0
>&"Undefined command: \"bb\". Try \"help\".\n"
>2^error,msg="Undefined command: \"bb\". Try \"help\"."
>&"set print static-members off\n"
>3^done
>&"set breakpoint pending on\n"
>4^done
>&"set print elements 10000\n"
>5^done
>&"set overload-resolution off\n"
>6^done
>&"handle SIGSEGV nopass stop print\n"
>~"Signal Stop\tPrint\tPass to program\tDescription\n"
>~"SIGSEGV Yes\tYes\tNo\t\tSegmentation fault\n"
>7^done
>&"set unwindonsignal on\n"
>8^done
>&"set width 0\n"
>9^done
>&"set height 0\n"
>10^done
>&"attach 3152\n"
>~"Attaching to process 3152\n"
>~"gdb: thawing initially frozen thread.\n"
>~"[New thread 3152.0xfc8]\n"
s[New thread 3152.0xfc8]
>~"(no debugging symbols found)\n"
>~"(no debugging symbols found)\n"
>~"(no debugging symbols found)\n"
>~"[New thread 3152.0xc08]\n"
s[New thread 3152.0xc08]
>~"Load new symbol table from
>\"C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen\\debug\\GraphGen.exe\"?
>(y or n) [answered Y; input not from terminal]\n"
>~"Reading symbols from
>C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen\\debug\\GraphGen.exe..."
sReading
C:\Users\Creat\Documents\Studienarbeit\GraphGen\debug\GraphGen.exe......
>~"done.\n"
>~"Symbols already loaded for C:\\Windows\\SysWOW64\\ntdll.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\kernel32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\KernelBase.dll\n"
>~"Symbols already loaded for C:\\Qt\\qt\\bin\\QtCored4.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\advapi32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\msvcrt.dll\n"
>~"Symbols already loaded for C:\\Windows\\SysWOW64\\sechost.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\rpcrt4.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\sspicli.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\cryptbase.dll\n"
>~"Symbols already loaded for C:\\Qt\\mingw\\bin\\mingwm10.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\ole32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\gdi32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\user32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\lpk.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\usp10.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\ws2_32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\nsi.dll\n"
>~"Symbols already loaded for C:\\Qt\\mingw\\bin\\libgcc_s_dw2-1.dll\n"
>~"Symbols already loaded for C:\\Windows\\SysWOW64\\imm32.dll\n"
>~"Symbols already loaded for C:\\Windows\\syswow64\\msctf.dll\n"
>~"Symbols already loaded for C:\\Windows\\SysWOW64\\winmm.dll\n"
>~"[Switching to thread 3152.0xc08]\n"
>11^done
dState changed from InferiorStarting(6) to InferiorStopped(13).
dINFERIOR ATTACHED
<12set substitute-path
C:/qt-greenhouse/Trolltech/Code_less_create_more/Trolltech/Code_less_create_more/Troll/4.6/qt
C:/Qt/qt/include/..
<13set substitute-path C:/iwmake/build_mingw_opensource C:/Qt/qt/include/..
sSetting breakpoints...
<14-file-list-exec-source-files
<15-break-list
>&"set substitute-path
>C:/qt-greenhouse/Trolltech/Code_less_create_more/Trolltech/Code_less_create_more/Troll/4.6/qt
> C:/Qt/qt/include/..\n"
>12^done
>&"set substitute-path C:/iwmake/build_mingw_opensource C:/Qt/qt/include/..\n"
>13^done
>14^done,files=[{file="../../../gcc-4.4.0/libgcc/../gcc/libgcc2.c"},{file="../../../gcc-4.4.0/libgcc/../gcc/gthr-win32.h"},{file="../../../gcc-4.4.0/libgcc/../gcc/config/i386/gthr-win32.c"},{file="../../../gcc-4.4.0/libgcc/../gcc/config/i386/gthr-win32.c"},{file="../../../gcc-4.4.0/libgcc/../gcc/config/i386/cygwin.asm"},{file="../../../gcc-4.4.0/libgcc/../gcc/config/i386/cygwin.asm"},{file="cp-demangle.c"},{file="cp-demangle.c"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/unwind-cxx.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_type.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_type.cc"},{file="/mingw/src/gcc-4.4.0/libstdc++-v3/libsupc++/typeinfo"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/vterminate.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/vterminate.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_term_handler.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_unex_handler.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/tinfo.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/tinfo.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_call.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_call.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_globals.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_globals.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_terminate.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_terminate.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new_opv.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new_opv.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/del_opv.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/del_opv.cc"},{file="/mingw/src/gccbf/mingw32/libstdc++-v3/include/mingw32/bits/gthr-default.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_alloc.cc"},{file="/mingw/src/gccbf/mingw32/libstdc++-v3/include/ext/concurrence.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_alloc.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/del_op.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/del_op.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/pure.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/pure.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/unwind-cxx.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_throw.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_throw.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new_op.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new_op.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/guard.cc"},{file="/mingw/src/gccbf/mingw32/libstdc++-v3/include/mingw32/bits/gthr-default.h"},{file="/mingw/src/gccbf/mingw32/libstdc++-v3/include/ext/concurrence.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/guard.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/unwind-cxx.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_catch.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_catch.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/tinfo.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/class_type_info.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/class_type_info.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/tinfo.h"},{file="/mingw/src/gcc-4.4.0/libstdc++-v3/libsupc++/cxxabi.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/vmi_class_type_info.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/vmi_class_type_info.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/si_class_type_info.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/si_class_type_info.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new_handler.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/new_handler.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_exception.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_exception.cc"},{file="/mingw/src/gcc-4.4.0/libstdc++-v3/libsupc++/exception"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/unwind-cxx.h"},{file="/mingw/src/gcc-4.4.0/libstdc++-v3/../gcc/unwind-pe.h"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_personality.cc"},{file="../../../../gcc-4.4.0/libstdc++-v3/libsupc++/eh_personality.cc"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qeventtransition.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qeventtransition.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qeventtransition.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qsignaltransition.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qsignaltransition.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qsignaltransition.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qabstracttransition.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qabstracttransition.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qabstracttransition.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qhistorystate.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qhistorystate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qhistorystate.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qfinalstate.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qfinalstate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qfinalstate.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qstate.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qstate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qstate.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qabstractstate.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qabstractstate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qabstractstate.cpp"},{file="tmp/moc/debug_shared//../../../codecs/qtextcodecplugin.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qtextcodecplugin.cpp"},{file="../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qtextcodecplugin.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qtextcodecplugin.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qwineventnotifier_p.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qwineventnotifier_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qwineventnotifier_p.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qeventdispatcher_win_p.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qeventdispatcher_win_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qeventdispatcher_win_p.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qsharedmemory.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qsharedmemory.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qsharedmemory.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qobjectcleanuphandler.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qobjectcleanuphandler.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qobjectcleanuphandler.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qtranslator.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qtranslator.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qtranslator.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qtimer.cpp"},{file="tmp/moc/debug_shared//../../../kernel/qtimer.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qtimer.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qtimer.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qsocketnotifier.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qsocketnotifier.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qsocketnotifier.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qmimedata.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qmimedata.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qmimedata.cpp"},{file="tmp\\moc\\debug_shared\\moc_qcoreevent.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qcoreevent.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qcoreapplication.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qcoreapplication.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qcoreapplication.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qeventloop.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qeventloop.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qeventloop.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qabstractitemmodel.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qabstractitemmodel.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qabstractitemmodel.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qabstracteventdispatcher.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qabstracteventdispatcher.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qabstracteventdispatcher.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qfactoryloader_p.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qfactoryloader_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qfactoryloader_p.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qlibrary.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qlibrary.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qlibrary.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qpluginloader.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qpluginloader.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qpluginloader.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qwindowspipewriter_p.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qwindowspipewriter_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qwindowspipewriter_p.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qfilesystemwatcher_win_p.cpp"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qfilesystemwatcher_win_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qfilesystemwatcher_win_p.cpp"},{file="tmp/moc/debug_shared//../../../io/qfilesystemwatcher_p.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qfilesystemwatcher_p.cpp"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qfilesystemwatcher_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qfilesystemwatcher_p.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qsettings.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qsettings.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qsettings.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qtemporaryfile.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qtemporaryfile.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qtemporaryfile.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qnoncontiguousbytedevice_p.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qnoncontiguousbytedevice_p.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qnoncontiguousbytedevice_p.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qiodevice.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qiodevice.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qiodevice.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qfile.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qfile.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qfile.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qtimeline.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qtimeline.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qtimeline.cpp"},{file="tmp\\moc\\debug_shared\\moc_qlocale.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qlocale.cpp"},{file="tmp\\moc\\debug_shared\\moc_qeasingcurve.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qeasingcurve.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qthread.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qthread.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qthread.cpp"},{file="tmp\\moc\\debug_shared\\moc_qnamespace.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qnamespace.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qthreadpool.cpp"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qthreadpool.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qthreadpool.cpp"},{file="../../include/QtCore/../../src/corelib/io/qtextstream.h"},{file="../../include/QtCore/../../src/corelib/tools/qmap.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qfuturewatcher.cpp"},{file="tmp/moc/debug_shared//../../../concurrent/qfuturewatcher.h"},{file="../../include/QtCore/../../src/corelib/concurrent/qtconcurrentresultstore.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="tmp\\moc\\debug_shared\\moc_qfuturewatcher.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/tmp\\moc\\debug_shared\\moc_qfuturewatcher.cpp"},{file="xml/qxmlutils.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/tools/qchar.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="xml\\qxmlutils.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/xml\\qxmlutils.cpp"},{file="../../include/QtCore/../../src/corelib/io/qtextstream.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qvector.h"},{file="xml/qxmlstream.cpp"},{file="xml//qxmlstream_p.h"},{file="../../include/QtCore/../../src/corelib/codecs/qtextcodec.h"},{file="../../include/QtCore/../../src/corelib/tools/qhash.h"},{file="xml//qxmlutils_p.h"},{file="../../include/QtCore/../../src/corelib/xml/qxmlstream.h"},{file="../../include/QtCore/../../src/corelib/io/qiodevice.h"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="c:/mingw-44b/bin/../lib/gcc/mingw32/4.4.0/include/c++/new"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/tools/qchar.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="xml\\qxmlstream.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/xml\\qxmlstream.cpp"},{file="../../include/QtCore/../../src/corelib/io/qtextstream.h"},{file="../../include/QtCore/../../src/corelib/tools/qsharedpointer_impl.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qset.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="statemachine/qeventtransition.cpp"},{file="../../include/QtCore/private/../../../src/corelib/statemachine/qabstracttransition_p.h"},{file="statemachine//qstatemachine.h"},{file="statemachine//qeventtransition_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="../../include/QtCore/../../src/corelib/tools/qhash.h"},{file="statemachine//qeventtransition.h"},{file="../../include/QtCore/../../src/corelib/kernel/qcoreevent.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine\\qeventtransition.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qeventtransition.cpp"},{file="../../include/QtCore/../../src/corelib/io/qtextstream.h"},{file="../../include/QtCore/../../src/corelib/tools/qsharedpointer_impl.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qset.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="statemachine/qsignaltransition.cpp"},{file="../../include/QtCore/private/../../../src/corelib/statemachine/qabstracttransition_p.h"},{file="statemachine//qstatemachine.h"},{file="statemachine//qsignaltransition_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="../../include/QtCore/../../src/corelib/tools/qhash.h"},{file="../../include/QtCore/../../src/corelib/kernel/qcoreevent.h"},{file="statemachine//qsignaltransition.h"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine\\qsignaltransition.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qsignaltransition.cpp"},{file="../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h"},{file="statemachine//qstate.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qsharedpointer_impl.h"},{file="../../include/QtCore/../../src/corelib/kernel/qobject.h"},{file="statemachine/qabstracttransition.cpp"},{file="statemachine//qabstracttransition_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="statemachine//qabstracttransition.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine\\qabstracttransition.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qabstracttransition.cpp"},{file="statemachine//qhistorystate_p.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine/qhistorystate.cpp"},{file="../../include/QtCore/private/../../../src/corelib/statemachine/qabstractstate_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="statemachine//qhistorystate.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="statemachine\\qhistorystate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qhistorystate.cpp"},{file="statemachine/qfinalstate.cpp"},{file="statemachine//qabstractstate_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="statemachine\\qfinalstate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qfinalstate.cpp"},{file="statemachine//qstatemachine.h"},{file="statemachine//qabstracttransition.h"},{file="statemachine//qhistorystate.h"},{file="../../include/QtCore/../../src/corelib/statemachine/qabstractstate.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qset.h"},{file="../../include/QtCore/../../src/corelib/tools/qsharedpointer_impl.h"},{file="../../include/QtCore/../../src/corelib/kernel/qobject.h"},{file="statemachine/qstate.cpp"},{file="../../include/QtCore/private/../../../src/corelib/statemachine/qabstractstate_p.h"},{file="statemachine//qstate_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="../../include/QtCore/../../src/corelib/tools/qhash.h"},{file="../../include/QtCore/../../src/corelib/kernel/qcoreevent.h"},{file="statemachine//qstate.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine\\qstate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qstate.cpp"},{file="../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h"},{file="statemachine//qstate.h"},{file="statemachine//qstatemachine.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="statemachine/qabstractstate.cpp"},{file="statemachine//qabstractstate_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="statemachine//qabstractstate.h"},{file="../../include/QtCore/../../src/corelib/kernel/qobject.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine\\qabstractstate.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qabstractstate.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qsharedpointer_impl.h"},{file="statemachine//qeventtransition_p.h"},{file="statemachine//qabstracttransition_p.h"},{file="../../include/QtCore/../../src/corelib/io/qtextstream.h"},{file="statemachine//qsignaleventgenerator_p.h"},{file="statemachine//qeventtransition.h"},{file="statemachine//qsignaltransition.h"},{file="../../include/QtCore/../../src/corelib/animation/qabstractanimation.h"},{file="../../include/QtCore/../../src/corelib/animation/qpropertyanimation.h"},{file="../../include/QtCore/../../src/corelib/animation/qanimationgroup.h"},{file="../../include/QtCore/../../src/corelib/animation/qvariantanimation.h"},{file="../../include/QtCore/../../src/corelib/kernel/qpointer.h"},{file="../../include/QtCore/../../src/corelib/tools/qvector.h"},{file="../../include/QtCore/../../src/corelib/tools/qalgorithms.h"},{file="../../include/QtCore/../../src/corelib/tools/qscopedpointer.h"},{file="tmp/moc/debug_shared/moc_qstatemachine.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qpair.h"},{file="statemachine/qstatemachine.cpp"},{file="../../include/QtCore/../../src/corelib/tools/qset.h"},{file="statemachine//qstatemachine_p.h"},{file="../../include/QtCore/../../src/corelib/thread/qmutex.h"},{file="statemachine//qstate_p.h"},{file="../../include/QtCore/private/../../../src/corelib/kernel/qobject_p.h"},{file="statemachine//qstatemachine.h"},{file="../../include/QtCore/../../src/corelib/kernel/qvariant.h"},{file="../../include/QtCore/../../src/corelib/tools/qhash.h"},{file="../../include/QtCore/../../src/corelib/kernel/qcoreevent.h"},{file="../../include/QtCore/../../src/corelib/statemachine/qstate.h"},{file="../../include/QtCore/../../src/corelib/kernel/qobject.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="c:/mingw-44b/bin/../lib/gcc/mingw32/4.4.0/include/c++/new"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/tools/qchar.h"},{file="../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="statemachine\\qstatemachine.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/statemachine\\qstatemachine.cpp"},{file="codecs/qtextcodecplugin.cpp"},{file="codecs//qtextcodecplugin.h"},{file="../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h"},{file="../../include/QtCore/../../src/corelib/tools/qstringlist.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="c:/mingw-44b/bin/../lib/gcc/mingw32/4.4.0/include/c++/new"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="codecs\\qtextcodecplugin.cpp",fullname="C:/Qt/qt/include/..\\src\\corelib/codecs\\qtextcodecplugin.cpp"},{file="codecs//qutfcodec_p.h"},{file="../../include/QtCore/../../src/corelib/tools/qlist.h"},{file="codecs/qutfcodec.cpp"},{file="../../include/QtCore/../../src/corelib/global/qendian.h"},{file="../../include/QtCore/../../src/corelib/tools/qstring.h"},{file="../../include/QtCore/../../src/corelib/tools/qbytearray.h"},{file="../../include/QtCore/../../src/corelib/arch/qatomic_i386.h"},{file="../../include/QtCore/../../src/corelib/thread/qbasicatomic.h"},{file="../../include/QtCore/../../src/corelib/tools/qchar.h"},{file="../../include/QtCore/../../src/corelib/global/qglobal.h"},{file="codecs\\qutfcodec.cpp",fullname="C:/Qt/qt/include/..\\s
> [...] <cut off>
>15^done,BreakpointTable={nr_rows="0",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[]}
<16-break-insert -f "\"analyzer.cpp\":181"
>16^done,bkpt={number="1",type="breakpoint",disp="keep",enabled="y",addr="0x0040ad3a",func="Analyzer::analyzeDegree(Graph
> const*,
>bool)",file="analyzer.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/analyzer.cpp",line="181",times="0"}
dALL COMMANDS DONE; INVOKING CALLBACK
dBREAKPOINTS SET, CONTINUING INFERIOR STARTUP
dState changed from InferiorStopped(13) to InferiorRunningRequested(8).
<17-exec-continue
>17^running
dState changed from InferiorRunningRequested(8) to InferiorRunning(10).
sRunning...
>~"[Switching to thread 3152.0xfc8]\n"
>17*stopped,reason="breakpoint-hit",bkptno="1",thread-id="1",frame={addr="0x0040ad3a",func="Analyzer::analyzeDegree",args=[{name="this",value="0x28fdc0"},{name="graph",value="0x28fdb8"},{name="silent",value="24"}],file="analyzer.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/analyzer.cpp",line="181"}
dState changed from InferiorRunning(10) to InferiorStopping(11).
dState changed from InferiorStopping(11) to InferiorStopped(13).
dDumper injection loading triggered
(C:/Qt/qt/qtc-debugging-helper/debug/gdbmacros.dll)...
<18p 4
>&"p 4\n"
>~"$1 = 4"
>~"\n"
>18^done
<19info shared
<20-break-list
sStopped at breakpoint.
<21call (void*)qDumpObjectData440(1,21+1,0,0,0,0,0,0)
<22p (char*)&qDumpOutBuffer
<23-stack-list-arguments 2 0 0
<24-stack-list-locals 2
<25-stack-list-frames 0 20
<26-thread-list-ids
>&"info shared\n"
>~"From To Syms Read Shared Object Library\n"
>~"0x773e1000 0x77545ce4 Yes C:\\Windows\\SysWOW64\\ntdll.dll\n"
>~"0x76d41000 0x76e2bd30 Yes C:\\Windows\\syswow64\\kernel32.dll\n"
>~"0x75031000 0x75075982 Yes C:\\Windows\\syswow64\\KernelBase.dll\n"
>~"0x6a101000 0x6a3d69f8 Yes C:\\Qt\\qt\\bin\\QtCored4.dll\n"
>~"0x75341000 0x753df058 Yes C:\\Windows\\syswow64\\advapi32.dll\n"
>~"0x75081000 0x7512b2bc Yes C:\\Windows\\syswow64\\msvcrt.dll\n"
>~"0x765c1000 0x765d8ed8 Yes C:\\Windows\\SysWOW64\\sechost.dll\n"
>~"0x76a71000 0x76b45dfc Yes C:\\Windows\\syswow64\\rpcrt4.dll\n"
>~"0x74f51000 0x74f921f0 Yes C:\\Windows\\syswow64\\sspicli.dll\n"
>~"0x74f41000 0x74f4b474 Yes C:\\Windows\\syswow64\\cryptbase.dll\n"
>~"0x6fbc1000 0x6fbc6078 Yes C:\\Qt\\mingw\\bin\\mingwm10.dll\n"
>~"0x76301000 0x7645b0a8 Yes C:\\Windows\\syswow64\\ole32.dll\n"
>~"0x75141000 0x751b2928 Yes C:\\Windows\\syswow64\\gdi32.dll\n"
>~"0x76b61000 0x76c441a0 Yes C:\\Windows\\syswow64\\user32.dll\n"
>~"0x76c61000 0x76c692f8 Yes C:\\Windows\\syswow64\\lpk.dll\n"
>~"0x76641000 0x766dca02 Yes C:\\Windows\\syswow64\\usp10.dll\n"
>~"0x76461000 0x76494788 Yes C:\\Windows\\syswow64\\ws2_32.dll\n"
>~"0x75131000 0x75135058 Yes C:\\Windows\\syswow64\\nsi.dll\n"
>~"0x6e941000 0x6e94f630 Yes C:\\Qt\\mingw\\bin\\libgcc_s_dw2-1.dll\n"
>~"0x765e1000 0x76621ce0 Yes C:\\Windows\\SysWOW64\\imm32.dll\n"
>~"0x769a1000 0x76a6bebc Yes C:\\Windows\\syswow64\\msctf.dll\n"
>~"0x74261000 0x74291268 Yes C:\\Windows\\SysWOW64\\winmm.dll\n"
>19^done
>20^done,BreakpointTable={nr_rows="1",nr_cols="6",hdr=[{width="7",alignment="-1",col_name="number",colhdr="Num"},{width="14",alignment="-1",col_name="type",colhdr="Type"},{width="4",alignment="-1",col_name="disp",colhdr="Disp"},{width="3",alignment="-1",col_name="enabled",colhdr="Enb"},{width="10",alignment="-1",col_name="addr",colhdr="Address"},{width="40",alignment="2",col_name="what",colhdr="What"}],body=[bkpt={number="1",type="breakpoint",disp="keep",enabled="y",addr="0x0040ad3a",func="Analyzer::analyzeDegree(Graph
> const*,
>bool)",file="analyzer.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/analyzer.cpp",line="181",times="1"}]}
>&"call (void*)qDumpObjectData440(1,21+1,0,0,0,0,0,0)\n"
>&"No symbol \"qDumpObjectData440\" in current context.\n"
>21^error,msg="No symbol \"qDumpObjectData440\" in current context."
>&"p (char*)&qDumpOutBuffer\n"
>&"No symbol \"qDumpOutBuffer\" in current context.\n"
>22^error,msg="No symbol \"qDumpOutBuffer\" in current context."
sDebugging helpers not found.
>23^done,stack-args=[frame={level="0",args=[{name="this",type="class Analyzer *
>const",value="0x28fdc0"},{name="graph",type="const class Graph
>*",value="0x28fdb8"},{name="silent",type="bool",value="24"}]}]
>24^done,locals=[]
>25^done,stack=[frame={level="0",addr="0x0040ad3a",func="Analyzer::analyzeDegree",file="analyzer.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/analyzer.cpp",line="181"},frame={level="1",addr="0x0040a778",func="Analyzer::analyze",file="analyzer.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/analyzer.cpp",line="96"},frame={level="2",addr="0x0041ceb3",func="Graph::analyze",file="graph.h",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/graph.h",line="31"},frame={level="3",addr="0x0040d40a",func="GraphOverlay::initializeOverlay",file="graphoverlay.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/graphoverlay.cpp",line="74"},frame={level="4",addr="0x004118e0",func="Simulator::simulate",file="simulator.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/simulator.cpp",line="38"},frame={level="5",addr="0x00401bdd",func="main",file="main.cpp",fullname="C:\\Users\\Creat\\Documents\\Studienarbeit\\GraphGen/main.cpp",line="85"}]
>26^done,thread-ids={thread-id="1"},number-of-threads="1"
<<Rebuild Watchmodel 1>
sFinished retrieving data._______________________________________________
Qt-creator mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-creator