aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2012-10-23 16:40:19 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-24 08:20:24 +0200
commit16a398f598b16f196df2b011e893c653c4854ea3 (patch)
treef9b80137a2f63afe2d649cdfdd3a048540d21494
parentdae4efc4e5157cf39ca5a2b2e5a3eebb2827069e (diff)
Fix crash in qtlocation tests.
Task-number: QTBUG-27696 Change-Id: I0cc12e1be25a789a8245fae3a444629ca57872ef Reviewed-by: Christopher Adams <chris.adams@qinetic.com.au> Reviewed-by: Martin Jones <martin.jones@qinetic.com.au>
-rw-r--r--src/qmltest/quicktest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmltest/quicktest.cpp b/src/qmltest/quicktest.cpp
index 0a99654d39..d622ac9497 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
}
}