Good day!

With Qt 4.7.3 an example below crashes at QGraphicsScene::~QGraphicsScene() call:

#include <QCoreApplication>
#include <QGraphicsScene>

int main( int argc, char* argv[] )
{
    // replace this with QObject app; and no problems
    QCoreApplication app( argc, argv );

    new QGraphicsScene( &app );

    return 0;
}

Any ideas?

UPDATE:

Bug report created.

link|improve this question

43% accept rate
Is this your actual code? What is new QGraphicsScene( &app ); supposed to do? – Bart Oct 28 '11 at 13:54
yes, it's actual code after many simplifications. This line creates unnamed object in heap. I don't have any other files and use qmake for application building. – Iakov Minochkin Oct 28 '11 at 13:56
Yes, and when 'app' leaves scope it deletes child objects - QGraphicsScene instance. – Iakov Minochkin Oct 28 '11 at 14:01
feedback

2 Answers

up vote 1 down vote accepted

When a QGraphicsScene instance is constructed it appends itself in a list stored in a private member of the single QApplication instance, and when it is deleted, it also remove itself from that list:

QGraphicsScene::~QGraphicsScene()
{
    Q_D(QGraphicsScene);

    // Remove this scene from qApp's global scene list.
    qApp->d_func()->scene_list.removeAll(this);

    ...
}

When the application object is destroyed, the inherited base class' destructors are called recursively, so, ~QApplication() calls ~QCoreApplication() which itself calls ~QObject().

The actual deletion of child objects is done in ~QObject().
Which means that at the time the scene object is destroyed, all the QApplication members are already destroyed, so ~QGraphicsScene() crashes when it tries to access the list.

link|improve this answer
I will report this bag. – Iakov Minochkin Nov 1 '11 at 7:40
feedback

You should use QApplication instead of QCoreApplication

From the Qt docs :

The QCoreApplication class provides an event loop for console Qt applications.

Try the following

int main( int argc, char* argv[] )
{
    // replace this with QObject app; and no problems
    QApplication app( argc, argv );

    QGraphicsScene* pScene = new QGraphicsScene( &app );

    delete pScene;

    return app.exec();
}
link|improve this answer
2  
why I should write 'delete pScene;' when it must be deleted via parent object ( app )? – Iakov Minochkin Oct 28 '11 at 14:04
QApplication or QCoreApplication - in this example it's doesn't matter. – Iakov Minochkin Oct 28 '11 at 14:05
delete pScene is not necessary in this case but i always like to delete my pointers. – webclectic Oct 28 '11 at 14:14
QApplication matters. Try to run this minimal example with QApplication and with QCoreApplication. You will see that with QCoreApplication it crashes while it does not with QApplication. – webclectic Oct 28 '11 at 14:16
1  
deleting the scene right after creation doesn't make sense to me. – Frank Osterfeld Oct 30 '11 at 10:02
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.