From 9ef72fe5943998ae99602ded9c2830e2a8982f88 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Sun, 21 Oct 2007 22:55:13 +0000 Subject: [PATCH] qt4: delete the QApplication when we are finished using it, removes an ugly QObject::killTimers warning. --- modules/gui/qt4/qt4.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp index 977a540d56..47b1478415 100644 --- a/modules/gui/qt4/qt4.cpp +++ b/modules/gui/qt4/qt4.cpp @@ -279,6 +279,7 @@ static void Init( intf_thread_t *p_intf ) /* Launch */ app->exec(); + delete app; /* And quit */ MainInputManager::killInstance(); -- 2.39.5