diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:36:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:36:54 +0900 |
commit | 1ca6231ff7a251916340814041990bef8e282308 (patch) | |
tree | 70032d1b548c828ee397996ac1e6ef12b998698b /src/app/videoWindow.cpp | |
parent | 6208d03e3d27f1516519199132a8dc8d61e222f1 (diff) | |
download | codeine-1ca6231ff7a251916340814041990bef8e282308.tar.gz codeine-1ca6231ff7a251916340814041990bef8e282308.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/app/videoWindow.cpp')
-rw-r--r-- | src/app/videoWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/videoWindow.cpp b/src/app/videoWindow.cpp index 0f2d540..e9230ce 100644 --- a/src/app/videoWindow.cpp +++ b/src/app/videoWindow.cpp @@ -54,7 +54,7 @@ VideoWindow::initVideo() m_displayRatio = w / h; } - connect( &m_timer, SIGNAL(timeout()), SLOT(hideCursor()) ); + connect( &m_timer, TQ_SIGNAL(timeout()), TQ_SLOT(hideCursor()) ); XUnlockDisplay( X::d ); } |