From 272852f25bc6f3ec87061f7c43e359612fb767f5 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 9 Jun 2010 06:43:17 +0000 Subject: [PATCH] Delete qApp on exit on Win32 --- src/main.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7f3fb50ca..4bbb39a6d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -358,10 +358,7 @@ int main(int argc, char *argv[]){ delete loader; #endif qDebug("Deleting app..."); -#ifndef Q_WS_WIN - // XXX: Why does it crash on Windows!? delete app; -#endif qDebug("App was deleted! All good."); return ret; }