Tagged Questions

13
votes
3answers
2k views

How to avoid entering library's source files while debugging in Qt Creator with gdb?

How can I configure Qt Creator and/or gdb so that while debugging my program using Qt libraries the debugger would avoid stepping into Qt's source files?
13
votes
5answers
2k views

How to get the function name while in a function for debug strings?

I want to output the function name each time it is called, I can easily copy and paste the function name, however I wondered if there was a shortcut that would do the job for me? At the moment I am ...
6
votes
1answer
1k views

Need to step into Qt sources (my IDE is Qt Creator)

I'm using Qt Creator in Ubuntu. It's installed from the repositories but as it is now, there is no way to step into the Qt sources when debugging.
4
votes
3answers
182 views

Debug into Qt sources

Is it possible to step into Qt sources, e.g. qmainwindow.cpp, in Qt Creator? At the moment I'm seeing the disassembly, but it would be nice to see the sources instead.
3
votes
1answer
102 views

Why wouldn't qCritical or qDebug work when called from a destructor?

I have a multi-threaded application I was originally developing using Qt 4.6 and Qt Creator 2.2 (or possibly 2.1), and recently I upgraded to Qt 4.7 and Qt Creator 2.3 (this is all in Windows). I had ...
3
votes
1answer
70 views

Can __FILE__ and __LINE__ be made linkable when printed to Qt Creator's debug console?

Header: #define TRACE_ERROR(s) \ { ... char TraceBuffer[512]; sprintf(TraceBuffer, "%s\t(%s:%d)", s, __FILE__, __LINE__); DebugErrTrace(TraceBuffer); ... } ...
3
votes
2answers
1k views

How to redirect qDebug, qWarning, qCritical etc output?

I'm using a lot of qDebug() << statements for debug output. Is there any cross-platform way I can redirect that debug output to a file, without resorting to shell scripts? I'm guessing that ...
3
votes
1answer
541 views

QT Dependency Visualizer

I have a lot of classes which interact with other classes through signal&slot mechanism, composition, inheratance etc. I wonder, is there any tool which visualizes(such as:UML-like diagrams) ...
3
votes
5answers
738 views

How do I see the contents of Qt objects during debugging?

Many Qt classes uses pimpl, so they're very opaque to VS's debugger. This is bothersome when I want to check some internal Qt state to see if my code is doing it wrong or if I'm having wrong ...
2
votes
1answer
58 views

How to Debug applications on Device using QtCreator

I am new to symbian development and want to debug applications running on my Nokia N8 device. I installed CODA into my device, but I dont know how to debug applications running on it.
2
votes
2answers
2k views

warning: GDB: Failed to set controlling terminal: Invalid argument

I'm using Qt Creator on Ubuntu to develop C. Whenever I run with the debugger, I get the message warning: GDB: Failed to set controlling terminal: Invalid argument. This happens even with a hello ...
2
votes
2answers
169 views

Memory Leak related with replaceChild

Here is source code of my function: bool FieldModel::updateNode(QDomNode &node,const QString &parent){ QDomElement rootOfTag; ...
2
votes
2answers
188 views

Program crashes in debugger before anything happens

I'm building an application for Windows XP using the MinGW tool chain and it sometimes crashes unexpectedly. So, I'm trying to use a debugger (Gdb) but the program exits with code 03 before anything ...
1
vote
0answers
80 views

crash in a Qt app in my reimplementation of QApplication::notify()

I have a crash which occur seldom (one times or two times per day). I develop under MSVC2010 and in order to understand what's in going on, I debug using the "attach to process" feature provided by ...
1
vote
1answer
30 views

Is it possible to inspect standard components?

I am trying to get familiar with the QtCreator IDE. However, I've come to notice that while debugging, I can't take a closer look at the standard components. Looking at the included picture, I can't ...
1
vote
4answers
288 views

Outputting UTF-8 with qInstallMsgHandler

I would like to make my debug handler (installed with qInstallMsgHandler) handles UTF-8, however it seems it can only be defined as void myMessageOutput(QtMsgType type, const char *msg) and const ...
1
vote
0answers
77 views

Issues with QString and debugging in Qt development

I'm using DOM model to generate XML. When I have the DOM tree ready and try to output XML via return domDocument.toString(4);, it only gives me the first 255 characters. I've tried with ...
1
vote
3answers
163 views

Instantiating a Qt File-Based Logger for Debugging in a C++ Library

The following page provides a nice simple solution for file based logging in Qt for debugging without using a larger logging framework like the many that are suggested in other SO questions. I'm ...
1
vote
1answer
145 views

QGraphicsScene::clear() method crashes on release mode!

I inherited my scene from QGraphicsScene. I add many items(QGraphicslineItem, QGraphicsItem, QGraphicsTextItem) on this scene. Whenever i try QGraphicsSceneClear method it crashes on release mode. It ...
1
vote
1answer
330 views

Can I customize autoexp.dat to enable visualization of a QT QDomNode in Visual Studio 2010 Debugger

We are doing QT development in Visual Studio 2010. I would like to be able to see the contents of A QDomNode variable in the Visual Studio Debugger. It is possible to customize the display of ...
1
vote
2answers
599 views

Forcing the Qt GUI to update

I am coding a boardgame in Qt where, after the player makes a move, the computer AI must pause and think for some time. However, while it is thinking, it seems the screen will not be updated until ...
1
vote
1answer
906 views

Custom and Default Message Handler in Qt

I want to use default Qt message handler while logging messages to a log file except qDebug. Here my solution, do you have any suggestion or what are the possible problems with this implementation? ...
1
vote
2answers
220 views

Qt Creator: how to debug and watch widget's properties?

I have a form and several widgets on it. Say, I have the following code and breakpoint on this line: ui->labTitle->setMinimumHeight(64); And I would like to know which height the labTitle has ...
1
vote
2answers
275 views

Disable qt creator auto build when debug

How to disable qt creator from auto building when trying to debug? Currently when debug button is clicked, it automatically starts build. I want to disable this and just proceed to debug.
1
vote
2answers
102 views

cpp/Qt : per class debugging

I'm developing a Qt application. For each class, I'm trying to mimic the framework, such as error() and errorString() method, use of Private implementation. But I would like to add a per class ...
1
vote
1answer
264 views

Qt Creator Debugging

I'm using QT Creator on 3 platforms to create platform independent software. However, I'm getting a segmentation fault with the exact same code in Windows only. That doesn't sound so bad because I can ...
1
vote
1answer
1k views

Playing Multiple Sounds at Once in Qt

I'm trying to play background music along with sound effects using Qt. However, I can't get more than one sound to play at once. For example: QSound::play("Music.wav"); QSound::play("Effect.wav"); ...
1
vote
3answers
3k views

Can't start gdb.exe in Qt Creator

I have a project in Qt Creator that builds fine, but when I try to debug it I get this message: Adapter start failed Unable to start gdb 'C:\Qt\2010.02.1\mingw\bin\gdb.exe': Process failed to start: ...
1
vote
2answers
4k views

Visual C++ 2008 runtime error— debug vs release exe problem?

I have a Windows executable (native, not .Net) project that I'm trying to pass along to a new team member. It's a graphics modeling tool that uses the Qt widget library and OpenGL. The project runs ...
1
vote
2answers
2k views

Qt: Python tcp client sends data over socket. How to read these bytes with Qt?

Situation: I have tcp client made with Python and tcp server made with Qt. I try to send bytes with my client but I can't get Qt server to read these bytes. Using Python made client and server, ...
1
vote
2answers
357 views

Contents of PyString in Qt Creator debugger?

I've got a PyString* object that I would like to see the contents of. Is there any way to see the text of the PyString using Qt Creator's debugger? PyObject *import_str = ...
1
vote
3answers
464 views

Is there any memory browser in QtCreator?

I can't find it. In the watcher window I can manually type memory addresses but I'd like to see bigger chunks of memory... If this doesn't exist, is there any other free memory mapper for the Mac ...
1
vote
1answer
120 views

KDE development debugging

In a kde3 game called ksirtet (a tetris clone) when playing against a computer the human player cannot move the tetris piece left/right. I'm trying to fix it but cannot debug in gdb. After the line ...
1
vote
3answers
4k views

After setting a breakpoint in Qt, gdb says: “Error accessing memory address”

I wrote a very simple Qt program here: int main(int argc, char* argv[]) { QApplication app(argc, argv); QTableView table(&frame); table.resize(100, 100); table.show(); ...
1
vote
3answers
1k views

How do I use gdbmacros.cpp in QtCreator?

I'm trying to debug in QtCreator on Linux and I get the message: The debugged binary does not contain information needed for nice display of Qt data types. You might want to try including the ...
1
vote
3answers
325 views

How can I capture a stack trace on the QA computers

I am writing a Qt/C++ application, up until this month I have been using Mingw for compiling and drmingw for getting the stack trace from the QA people. However I recently converted over to MSVC++ 9 ...
0
votes
0answers
26 views

How to check type of object inherited from QObject in breakpoint condition?

Is it possible to check type of object inherited from QObject in visual studio breakpoint condition?
0
votes
1answer
59 views

What's the difference between a Qt debug version and the Qt release version?

In many cases, code which works in the debug version doesn't work normally in the release version. I always encounter these questions, just like the earthquake happening. Which Big Beer can help me to ...
0
votes
1answer
46 views

Does Qt offer a (guaranteed) debug definition?

Does anyone know an officially supported way to include debug-build only code in Qt? For example: #ifdef QT_DEBUG // do something #endif Basically like Q_ASSERT but for more complex tests. I can't ...
0
votes
2answers
106 views

Can't get Qt to find the debugging helper

This is sort of a followup to this thread--unfortunately I didn't make any progress at the time so I thought I would start over. I am consistently getting this in the debugging log (QtCreator 2.3.1, ...
0
votes
0answers
28 views

Debugger doesn't stop in same function if the Base class is different to QSortFilterProxyModel

If I inherit from QSortFilterProxyModel as below: #ifndef FILES_PROXY_MODEL_H #define FILES_PROXY_MODEL_H #include <QAbstractProxyModel> #include <QSortFilterProxyModel> class ...
0
votes
1answer
37 views

Cannot step into function of QSortFilterProxyModel

I have a line in my code: return QSortFilterProxyModel::data(proxyIndex,role); Yet, when I press step into while debugging, this doesn't do anything, just skips this line. I'm in a debug mode, ...
0
votes
1answer
33 views

Debugging in qt - how to change a position of a watched window?

Does anyone knows how to change panel with local variables. It's just when during debugging this panel is on the right side of the screen and I really like it to be on the bottom part. Thanks.
0
votes
0answers
151 views

Qt debugging in Netbeans … no debug output

I am about to write a Qt C++ application with Netbeans on my computer at work. I already did some programs on my private notebook a few months ago and all of them still seem to work and - most ...
0
votes
5answers
97 views

How to debug QDomElement in QtXml?

I've got a QDomElement, and I would like to debug it, i.e. see it as plain text in debug console. In order to output it with qDebug(), it needs to be in QString format, however I don't see any ...
0
votes
1answer
295 views

Reproducing a bug in Qt: Segmentation fault when debugging code

I am new to Linux, Qt, and relatively junior in C++; so the problem I experience is very likely to be my own fault... Any help is very much appreciated. I encounter a Segmentation Fault when trying ...
0
votes
2answers
63 views

Can't identify source of signalmap error

I've got the following code: QSignalMapper* signalMapper = new QSignalMapper (this) ; ttAct = new QAction(tr("Ttime"), this); ttAct->setCheckable(true); ttAct->setChecked(true); connect(ttAct, ...
0
votes
2answers
234 views

Qt - statically compiled exe refers shared lib

My static compilation in Qt worked fine upto this week. I reinstalled the qt, and recompiled the static version. The headache started after this. Now, even though I compiled using tatic version. The ...
0
votes
0answers
151 views

Qt Run time error [closed]

Possible Duplicate: Error when using Qt, VC++ and OpenCV library Hello where is the problem in this function? , I must use it 2 times in for statment from 0 to 5 ,so 10 times. IplImage* ...
0
votes
1answer
85 views

QIcon not shown on Ubuntu, works on Windows

Hi I have a problem in multiple applications which were all developed on a Windows machine. When I build the same apps on Ubuntu and run them, no icons are shown at the File Menu bar alone . Works ...

1 2