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
c407f5e0
Commit
c407f5e0
authored
May 19, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: remove unnecessary includes
parent
359ef7a1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
16 deletions
+13
-16
modules/gui/qt4/components/info_panels.cpp
modules/gui/qt4/components/info_panels.cpp
+8
-0
modules/gui/qt4/components/info_panels.hpp
modules/gui/qt4/components/info_panels.hpp
+0
-11
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+5
-4
modules/gui/qt4/util/input_slider.hpp
modules/gui/qt4/util/input_slider.hpp
+0
-1
No files found.
modules/gui/qt4/components/info_panels.cpp
View file @
c407f5e0
...
...
@@ -51,6 +51,14 @@
#include <QSpinBox>
#include <QTextEdit>
static
inline
void
setSpinBounds
(
QSpinBox
*
spinbox
)
{
spinbox
->
setRange
(
0
,
INT_MAX
);
spinbox
->
setAccelerated
(
true
);
spinbox
->
setAlignment
(
Qt
::
AlignRight
);
spinbox
->
setSpecialValueText
(
""
);
}
/************************************************************************
* Single panels
************************************************************************/
...
...
modules/gui/qt4/components/info_panels.hpp
View file @
c407f5e0
...
...
@@ -31,21 +31,10 @@
#endif
#include <vlc_common.h>
#include <vlc_meta.h>
#include <QWidget>
#include <limits.h>
#define setSpinBounds( spinbox ) { \
spinbox->setRange( 0, INT_MAX ); \
spinbox->setAccelerated( true ) ; \
spinbox->setAlignment( Qt::AlignRight ); \
spinbox->setSpecialValueText(""); }
class
QTreeWidget
;
class
QTreeWidgetItem
;
class
QTreeView
;
class
QSpinBox
;
class
QLineEdit
;
class
CoverArtLabel
;
...
...
modules/gui/qt4/input_manager.cpp
View file @
c407f5e0
...
...
@@ -32,10 +32,11 @@
#include "input_manager.hpp"
#include "recents.hpp"
#include <vlc_keys.h>
#include <vlc_url.h>
#include <vlc_strings.h>
#include <vlc_aout.h>
#include <vlc_keys.h>
/* ACTION_ID */
#include <vlc_url.h>
/* decode_URI */
#include <vlc_strings.h>
/* str_format_meta */
#include <vlc_aout.h>
/* audio_output_t */
#include <QApplication>
#include <QFile>
...
...
modules/gui/qt4/util/input_slider.hpp
View file @
c407f5e0
...
...
@@ -30,7 +30,6 @@
# include "config.h"
#endif
#include <vlc_common.h>
#include "timetooltip.hpp"
#include "styles/seekstyle.hpp"
...
...
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