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
4ca4116e
Commit
4ca4116e
authored
Jul 28, 2006
by
zorglub
Browse files
Don't use RTTI
parent
07371730
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/dialogs_provider.cpp
View file @
4ca4116e
...
...
@@ -57,7 +57,7 @@ void DialogsProvider::customEvent( QEvent *event )
{
if
(
event
->
type
()
==
DialogEvent_Type
)
{
DialogEvent
*
de
=
dynamic
_cast
<
DialogEvent
*>
(
event
);
DialogEvent
*
de
=
qobject
_cast
<
DialogEvent
*>
(
event
);
switch
(
de
->
i_dialog
)
{
case
INTF_DIALOG_FILE
:
...
...
modules/gui/qt4/playlist_model.cpp
View file @
4ca4116e
...
...
@@ -311,7 +311,7 @@ PLItem * PLModel::FindInner( PLItem *root, int i_id, bool b_input )
/************************* Updates handling *****************************/
void
PLModel
::
customEvent
(
QEvent
*
event
)
{
PLEvent
*
ple
=
dynamic
_cast
<
PLEvent
*>
(
event
);
PLEvent
*
ple
=
qobject
_cast
<
PLEvent
*>
(
event
);
if
(
event
->
type
()
==
ItemUpdate_Type
)
ProcessInputItemUpdate
(
ple
->
i_id
);
...
...
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