summaryrefslogtreecommitdiffstats
path: root/src/app/xineEngine.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-02 11:36:54 +0900
committerMichele Calgaro <[email protected]>2024-01-02 11:36:54 +0900
commit1ca6231ff7a251916340814041990bef8e282308 (patch)
tree70032d1b548c828ee397996ac1e6ef12b998698b /src/app/xineEngine.cpp
parent6208d03e3d27f1516519199132a8dc8d61e222f1 (diff)
downloadcodeine-1ca6231ff7a251916340814041990bef8e282308.tar.gz
codeine-1ca6231ff7a251916340814041990bef8e282308.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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;