Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
86a25b2c
Commit
86a25b2c
authored
Sep 12, 2007
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove rating from infodialog, closes ticket #1248 finally,
also add myself to authors in those files.
parent
b2aeaed4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/components/infopanels.cpp
+4
-2
modules/gui/qt4/components/infopanels.hpp
modules/gui/qt4/components/infopanels.hpp
+2
-1
No files found.
modules/gui/qt4/components/infopanels.cpp
View file @
86a25b2c
...
...
@@ -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
...
...
modules/gui/qt4/components/infopanels.hpp
View file @
86a25b2c
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment