From: Friedemann Kleint Date: Tue, 23 Oct 2012 14:40:19 +0000 (+0200) Subject: Fix crash in qtlocation tests. X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=16a398f598b16f196df2b011e893c653c4854ea3;p=konrad%2Fqtdeclarative.git Fix crash in qtlocation tests. Task-number: QTBUG-27696 Change-Id: I0cc12e1be25a789a8245fae3a444629ca57872ef Reviewed-by: Christopher Adams Reviewed-by: Martin Jones --- diff --git a/src/qmltest/quicktest.cpp b/src/qmltest/quicktest.cpp index 0a99654..d622ac9 100644 --- a/src/qmltest/quicktest.cpp +++ b/src/qmltest/quicktest.cpp @@ -322,7 +322,7 @@ int quick_test_main(int argc, char **argv, const char *name, const char *sourceD rootobj.setWindowShown(true); if (!rootobj.hasQuit && rootobj.hasTestCase()) eventLoop.exec(); - view->hide(); + // view->hide(); Causes a crash in Qt3D due to deletion of the GL context, see QTBUG-27696 } }