From 4452e098d6b8533e06277bab25781f5de9f2dccc Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 31 Oct 2009 17:12:45 +0200 Subject: [PATCH] Qt4: remove privacy dialog on Qt4 Unparented dialogs are not supported by the window manager. This was causing a deadlock during VLC startup (There may be other cases left). --- modules/gui/qt4/main_interface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp index 986d9ae98e..05359a0b1e 100644 --- a/modules/gui/qt4/main_interface.cpp +++ b/modules/gui/qt4/main_interface.cpp @@ -590,6 +590,7 @@ inline void MainInterface::initSystray() inline void MainInterface::askForPrivacy() { +#ifndef HAVE_MAEMO /** * Ask for the network policy on FIRST STARTUP **/ @@ -610,6 +611,7 @@ inline void MainInterface::askForPrivacy() config_SaveConfigFile( p_intf, NULL ); } } +#endif } int MainInterface::privacyDialog( QList *controls ) -- 2.39.2