
Originally Posted by
Wizard
I have installed openSUSE in VMWare with Qt 4.3.1. First time I think that there was no bugs... But if you will drag, resize, click, move mouse (use application) you will have segmentation fault error...
I've tried resizing, clicking and moving the window, but it didn't crash.

Originally Posted by
Wizard
QImage::detach() /home/wizard/qt-x11-opensource-src-4.3.1/src/gui/image/qimage.cpp:1320 0xb788f144
6 QPainter::begin() /home/wizard/qt-x11-opensource-src-4.3.1/src/gui/painting/qpainter.cpp:1301 0xb78daeff
Hmm... these two methods are always present in the backtrace. What happens if you change the code this way:
painter.
fillRect(0,
0,
50,
50,
QColor(qrand
()));
painter.end(); // <-------
emit ImageReady(MyImage);
painter.fillRect(0, 0, 50, 50, QColor(qrand()));
painter.end(); // <-------
emit ImageReady(MyImage);
To copy to clipboard, switch view to plain text mode
?
Bookmarks