Hi,

I am converting a rather large project that runs on qt3 on Linux to run on qt4 on XP (because there is no qt3 opensource for XP).

(XP runs as a vmware client on the Debian Sid Linux host).

I get lots of:
QWidget::repaint: Recursive repaint detected
and
QPainter::begin: Widget painting can only begin as a result of a paintEvent

And no icons show up in the main window and no editor windows open up.

So in an attempt to find what in the code is doing that I did a qt debug library build from its shortcut in Qt by Trolltech v4.3.1 (OpenSource).

Then I added CONFIG += debug and CONFIG += console to the pro file and reran qmake and redid the make.

But to my surprise I got no added messages at all.

Is there a way to find out what in the code makes those messages appear? There are over a 100 modules and 1000's of lines of code :-(

Hugo