summaryrefslogtreecommitdiffstats
path: root/src/app/xineEngine.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:36:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:14:40 +0900
commitb023e0397971a8bf160f67f03da84e8389ad27b6 (patch)
tree3771e178b5559341134c62a53ff0390b2149a635 /src/app/xineEngine.cpp
parent7c2b90bd69ea9078e888c494918ba7f5a03949ff (diff)
downloadcodeine-b023e0397971a8bf160f67f03da84e8389ad27b6.tar.gz
codeine-b023e0397971a8bf160f67f03da84e8389ad27b6.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1ca6231ff7a251916340814041990bef8e282308)
Diffstat (limited to 'src/app/xineEngine.cpp')
-rw-r--r--src/app/xineEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/xineEngine.cpp b/src/app/xineEngine.cpp
index 3a05862..04be1cf 100644
--- a/src/app/xineEngine.cpp
+++ b/src/app/xineEngine.cpp
@@ -762,7 +762,7 @@ VideoWindow::xineEventListener( void *p, const xine_event_t* xineEvent )
//FIXME this is not the right way, it will have bugs
debug() << "XINE_EVENT_MRL_REFERENCE\n";
engine->m_url = TQString::fromUtf8( ((xine_mrl_reference_data_ext_t*)xineEvent->data)->mrl );
- TQTimer::singleShot( 0, engine, SLOT(play()) );
+ TQTimer::singleShot( 0, engine, TQ_SLOT(play()) );
break;
}
case XINE_EVENT_DROPPED_FRAMES: debug() << "XINE_EVENT_DROPPED_FRAMES\n"; break;