]> git.sesse.net Git - vlc/commitdiff
Remove rating from infodialog, closes ticket #1248 finally,
authorIlkka Ollakka <ileoo@videolan.org>
Wed, 12 Sep 2007 19:06:18 +0000 (19:06 +0000)
committerIlkka Ollakka <ileoo@videolan.org>
Wed, 12 Sep 2007 19:06:18 +0000 (19:06 +0000)
also add myself to authors in those files.

modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/components/infopanels.hpp

index 57a738a5e68fdb5642ff2d96bd6bbe0a1a3580ae..4f189da2ce85fa6692139e645ba07fe32188af4a 100644 (file)
@@ -6,6 +6,7 @@
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
  *          Jean-Baptiste Kempf <jb@videolan.org>
+ *          Ilkka Ollakka <ileoo@videolan.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -88,10 +89,11 @@ MetaPanel::MetaPanel( QWidget *parent,
     metaLayout->addWidget( date_text, line, 1, 1, 3 );
 
     /* Rating - on the same line */
+    /*
     metaLayout->addWidget( new QLabel( qtr( VLC_META_RATING ) + " :" ), line, 4, 1, 2 );
     rating_text = new QSpinBox; setSpinBounds( rating_text );
     metaLayout->addWidget( rating_text, line, 6, 1, 1 );
-
+    */
     /* Language on the same line */
     metaLayout->addWidget( new QLabel( qfu( VLC_META_LANGUAGE ) + " :" ), line, 7, 1, 2 );
     language_text = new QLineEdit;
@@ -216,7 +218,7 @@ void MetaPanel::update( input_item_t *p_item )
 
     UPDATE_META( Date, date_text );
     UPDATE_META( TrackNum, seqnum_text );
-    UPDATE_META_INT( Rating, rating_text );
+//    UPDATE_META_INT( Rating, rating_text );
 
 #undef UPDATE_META_INT
 #undef UPDATE_META
index 7b73589b58da1639bc6c1f060d4887e0131cf2ee..6194b355f2d039150f264b92b75831876b3e0968 100644 (file)
@@ -6,6 +6,7 @@
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
  *          Jean-Baptiste Kempf <jb@videolan.org>
+ *          Ilkka Ollakka <ileoo@videolan.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -72,7 +73,7 @@ private:
     QLineEdit *collection_text;
     QLineEdit *seqnum_text;
     QLineEdit *description_text;
-    QSpinBox *rating_text;
+//    QSpinBox *rating_text;
     QLineEdit *date_text;
 //    QLineEdit *setting_text;
     QLineEdit *language_text;