Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
d0b46b67
Commit
d0b46b67
authored
May 16, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4: metaChanged -> currentMetaChanged
parent
10b1ba7f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/mediainfo.cpp
+2
-2
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+2
-2
modules/gui/qt4/input_manager.hpp
modules/gui/qt4/input_manager.hpp
+1
-1
No files found.
modules/gui/qt4/dialogs/mediainfo.cpp
View file @
d0b46b67
...
...
@@ -103,9 +103,9 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
**/
CONNECT
(
THEMIM
->
getIM
(),
infoChanged
(
input_item_t
*
),
IP
,
update
(
input_item_t
*
)
);
CONNECT
(
THEMIM
->
getIM
(),
m
etaChanged
(
input_item_t
*
),
CONNECT
(
THEMIM
->
getIM
(),
currentM
etaChanged
(
input_item_t
*
),
MP
,
update
(
input_item_t
*
)
);
CONNECT
(
THEMIM
->
getIM
(),
m
etaChanged
(
input_item_t
*
),
CONNECT
(
THEMIM
->
getIM
(),
currentM
etaChanged
(
input_item_t
*
),
EMP
,
update
(
input_item_t
*
)
);
CONNECT
(
THEMIM
->
getIM
(),
statisticsUpdated
(
input_item_t
*
),
ISP
,
update
(
input_item_t
*
)
);
...
...
modules/gui/qt4/input_manager.cpp
View file @
d0b46b67
...
...
@@ -137,7 +137,7 @@ void InputManager::delInput()
/* Reset all InfoPanels but stats */
emit
artChanged
(
NULL
);
emit
infoChanged
(
NULL
);
emit
m
etaChanged
(
(
input_item_t
*
)
NULL
);
emit
currentM
etaChanged
(
(
input_item_t
*
)
NULL
);
emit
encryptionChanged
(
false
);
emit
recordingStateChanged
(
false
);
...
...
@@ -612,7 +612,7 @@ inline void InputManager::UpdateMeta( int id )
inline
void
InputManager
::
UpdateMeta
()
{
emit
m
etaChanged
(
input_GetItem
(
p_input
)
);
emit
currentM
etaChanged
(
input_GetItem
(
p_input
)
);
}
inline
void
InputManager
::
UpdateInfo
()
...
...
modules/gui/qt4/input_manager.hpp
View file @
d0b46b67
...
...
@@ -185,7 +185,7 @@ signals:
/// Statistics are updated
void
statisticsUpdated
(
input_item_t
*
);
void
infoChanged
(
input_item_t
*
);
void
m
etaChanged
(
input_item_t
*
);
void
currentM
etaChanged
(
input_item_t
*
);
void
metaChanged
(
int
);
void
artChanged
(
QString
);
/// Play/pause status
...
...
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