Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
01f85e92
Commit
01f85e92
authored
Aug 31, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the broken kludge that should not be needed.
Can't test if it now works (no GNOME here)
parent
d10ea719
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+0
-12
No files found.
modules/gui/qt4/qt4.cpp
View file @
01f85e92
...
...
@@ -204,20 +204,8 @@ static void Init( intf_thread_t *p_intf )
p_intf
->
p_sys
->
p_app
=
app
;
#ifndef WIN32
/* Ugly klugde
* Remove SIGCHLD from the ignored signal the time to initialise
* Qt because it executes gconftool-2 to get the icon theme when using
* cleanlooks theme. */
sigset_t
set
;
sigemptyset
(
&
set
);
sigaddset
(
&
set
,
SIGCHLD
);
pthread_sigmask
(
SIG_UNBLOCK
,
&
set
,
NULL
);
/* that forces the execution of QCleanlooksStylePrivate::lookupIconTheme() */
app
->
style
()
->
standardIcon
(
QStyle
::
SP_TitleBarMenuButton
);
pthread_sigmask
(
SIG_BLOCK
,
&
set
,
NULL
);
#endif
// Initialize timers
...
...
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