Commit 86a25b2c authored by Ilkka Ollakka's avatar Ilkka Ollakka

Remove rating from infodialog, closes ticket #1248 finally,

also add myself to authors in those files.
parent b2aeaed4
......@@ -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
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment