]> git.sesse.net Git - vlc/commitdiff
Update comments.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 25 Aug 2008 07:30:18 +0000 (00:30 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 25 Aug 2008 07:35:19 +0000 (00:35 -0700)
modules/gui/qt4/components/complete_preferences.cpp
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/qt4.cpp

index cc85b9c6c2f6eb660af5488dc5990019803223d9..37d2d6479475ca3de5783610b58d1b34f6839b98 100644 (file)
@@ -178,8 +178,6 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) :
             /* Create a new TreeWidget */
             QTreeWidgetItem *subcat_item = new QTreeWidgetItem();
             subcat_item->setText( 0, data_sub->name );
-            /* TODO : Choose the image */
-            //subcat_item->setIcon( 0 , XXX );
             subcat_item->setData( 0, Qt::UserRole,
                                   qVariantFromValue( data_sub ) );
             subcat_item->setSizeHint( 0, QSize( -1, ITEM_HEIGHT ) );
@@ -274,10 +272,8 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) :
         module_data->i_type = TYPE_MODULE;
         module_data->psz_name = strdup( module_GetObjName( p_module ) );
         module_data->help.clear();
-        // TODO image
         QTreeWidgetItem *module_item = new QTreeWidgetItem();
         module_item->setText( 0, qtr( module_GetName( p_module, false ) ) );
-        //item->setIcon( 0 , XXX );
         module_item->setData( 0, Qt::UserRole,
                               QVariant::fromValue( module_data) );
         module_item->setSizeHint( 0, QSize( -1, ITEM_HEIGHT ) );
index 430296cbaf16f801525f295566cf21b075470073..c6b013aaf4669db70349af0f0d9403de3591bb83 100644 (file)
@@ -164,7 +164,7 @@ VLMDialog::~VLMDialog()
 {
     delete vlmWrapper;
 
-   /* FIXME :you have to destroy vlm here to close
+   /* TODO :you have to destroy vlm here to close
     * but we shouldn't destroy vlm here in case somebody else wants it */
     if( p_vlm )
     {
@@ -259,7 +259,7 @@ void VLMDialog::addVLMItem()
     clearWidgets();
 }
 
-// FIXME : VOD are not exported to the file
+/* TODO : VOD are not exported to the file */
 bool VLMDialog::exportVLMConf()
 {
     QString saveVLMConfFileName = QFileDialog::getSaveFileName(
@@ -454,8 +454,7 @@ void VLMDialog::saveModifications()
             break;
            //           vlmObj->
         }
-        vlmObj->update(); /* It should call the correct function is VLMAWidget
-                             is abstract, but I am far from sure... FIXME ? */
+        vlmObj->update();
     }
     clearWidgets();
 }
index 87f7299a7ded921eb743f80d082b2becfe0bc35b..1a221fd9511e2148d0f15339de7cfe17df14ecd7 100644 (file)
@@ -571,9 +571,6 @@ MainInputManager::MainInputManager( intf_thread_t *_p_intf )
 
     var_AddCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, this );
 
-    // No necessary, I think TODO REMOVE ME at the end
-    //var_AddCallback( THEPL, "intf-change", ItemChanged, im );
-
     /* Warn our embedded IM about input changes */
     CONNECT( this, inputChanged( input_thread_t * ),
              im, setInput( input_thread_t * ) );
index 100c00237f7c15818004ee9c84d738228ec04934..0811f14ecd0ca93b2b32857b338489660436bf90 100644 (file)
@@ -337,8 +337,7 @@ static void *Init( vlc_object_t *obj )
 #endif
             QSettings::UserScope, "vlc", "vlc-qt-interface" );
 
-    /* Icon setting
-       FIXME: use a bigger icon ? */
+    /* Icon setting */
     if( QDate::currentDate().dayOfYear() >= 354 )
         app->setWindowIcon( QIcon( QPixmap(vlc_christmas_xpm) ) );
     else