]> git.sesse.net Git - vlc/commitdiff
coding style cleanup
authorJean-Paul Saman <jpsaman@videolan.org>
Tue, 20 Mar 2007 08:21:52 +0000 (08:21 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Tue, 20 Mar 2007 08:21:52 +0000 (08:21 +0000)
modules/misc/qte_main.cpp

index 8bdfcfedddac8f0abb29e27cea2b438f7d142e00..d3139494097286f11c230401388ab3b6fb7f3ee2 100644 (file)
@@ -176,13 +176,13 @@ static void QteMain( qte_thread_t *p_this )
     /* Run as standalone GuiServer or as GuiClient. */
     QApplication* pApp = new QApplication(i_argc, NULL,
         (p_this->b_gui_server ? (QApplication::GuiServer):(QApplication::GuiClient)) );
-    if(pApp)
+    if( pApp )
     {
         p_this->p_qte_application = pApp;
     }
 
     QWidget* pWidget = new QWidget(0, _("video") );
-    if(pWidget)
+    if( pWidget )
     {
         p_this->p_qte_widget = pWidget;
     }
@@ -194,4 +194,3 @@ static void QteMain( qte_thread_t *p_this )
     vlc_thread_ready( p_this );
     p_this->p_qte_application->exec();
 }
-