Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e677bda8
Commit
e677bda8
authored
Sep 05, 2007
by
Rafaël Carré
Browse files
Fix use of qcleanlooks style
parent
c4a87231
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/qt4.cpp
View file @
e677bda8
...
...
@@ -209,17 +209,16 @@ static void Init( intf_thread_t *p_intf )
int
argc
=
1
;
Q_INIT_RESOURCE
(
vlc
);
#ifndef WIN32
/* KLUDGE:
* disables icon theme use because that makes cleanlook style bug
* see commits 21610 21622 21654 for reference */
QApplication
::
setDesktopSettingsAware
(
false
);
#endif
QApplication
*
app
=
new
QApplication
(
argc
,
argv
,
true
);
app
->
setWindowIcon
(
QIcon
(
QPixmap
(
vlc_xpm
)
)
);
p_intf
->
p_sys
->
p_app
=
app
;
#ifndef WIN32
/* kludge:
* forces plastique style as cleanlooks bugs on gnome */
QPlastiqueStyle
*
plastique
=
new
QPlastiqueStyle
;
app
->
setStyle
(
plastique
);
#endif
// Initialize timers
DialogsProvider
::
getInstance
(
p_intf
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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