Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
84cb607a
Commit
84cb607a
authored
Mar 17, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: do not emit signals from the MIM constructor
Should close #14162
parent
1fbd0f24
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+0
-5
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+5
-1
No files found.
modules/gui/qt4/input_manager.cpp
View file @
84cb607a
...
...
@@ -1035,11 +1035,6 @@ MainInputManager::MainInputManager( intf_thread_t *_p_intf )
/* Warn our embedded IM about input changes */
DCONNECT
(
this
,
inputChanged
(
input_thread_t
*
),
im
,
inputChangedHandler
()
);
/* initialize p_input (an input can already be running) */
p_input
=
playlist_CurrentInput
(
THEPL
);
if
(
p_input
)
emit
inputChanged
(
p_input
);
}
MainInputManager
::~
MainInputManager
()
...
...
modules/gui/qt4/qt4.cpp
View file @
84cb607a
...
...
@@ -499,7 +499,11 @@ static void *Thread( void *obj )
/* Initialize the Dialog Provider and the Main Input Manager */
DialogsProvider
::
getInstance
(
p_intf
);
MainInputManager
::
getInstance
(
p_intf
);
MainInputManager
*
mim
=
MainInputManager
::
getInstance
(
p_intf
);
/* initialize p_input (an input can already be running) */
input_thread_t
*
p_input
=
playlist_CurrentInput
(
THEPL
);
if
(
p_input
)
mim
->
getIM
()
->
inputChangedHandler
();
#ifdef UPDATE_CHECK
/* Checking for VLC updates */
...
...
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