Hi! Just in case you haven't noticed yet, KDbg 0.3.1 is available from http://members.telecom.at/~johsixt/kdbg.html Unfortunately, this version doesn't compile any more for KDE 2, so you need a working KDE 1.1.x setup to run it. Also, one little bug slipped through. If you 1. have a running KDE 1.1.x setup and 2. you want to debug Qt 2/KDE 2 applications and 3. you want Qt's QStrings displayed, but 4. you always only see { ??? } instead of the string's value try the following patch: diff -ru kdbg-0.3.1/kdbg/debugger.cpp kdbg-0.3.1a/kdbg/debugger.cpp --- kdbg-0.3.1/kdbg/debugger.cpp Sun May 30 17:19:45 1999 +++ kdbg-0.3.1a/kdbg/debugger.cpp Wed Jun 23 21:43:24 1999 @@ -2239,7 +2239,7 @@ // limit the length and add 1 because length 0 is an error "(($qstrlen=(unsigned int)($qstrdata->len))>100?100:$qstrlen)" // if unicode data is 0, check if it is QString::null - ":($qstrdata==QString::null.d)"; + ":(1==0)"; dbgCmd = DCprintQStringStruct; } else { /* This is just a quick hack to get things going. The next release (should appear in KDE 1.1.2) will autodetect this situation. -- Hannes