diff options
author | Michele Calgaro <[email protected]> | 2024-01-02 11:37:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 10:15:03 +0900 |
commit | bcf4fd5491e82478891ca031814e57cf3c4804c4 (patch) | |
tree | 40434e394e27dd30c7836b14237aac4255f28403 /k9Mplayer | |
parent | 0828ec1943c3f1b7a340501e37983c148a1a43e3 (diff) | |
download | k9copy-bcf4fd5491e82478891ca031814e57cf3c4804c4.tar.gz k9copy-bcf4fd5491e82478891ca031814e57cf3c4804c4.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 29a878ff9db7fe75caae6f8cebaad3b3afea3f7b)
Diffstat (limited to 'k9Mplayer')
-rw-r--r-- | k9Mplayer/k9mplayer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/k9Mplayer/k9mplayer.cpp b/k9Mplayer/k9mplayer.cpp index 3b30cf6..6f26c21 100644 --- a/k9Mplayer/k9mplayer.cpp +++ b/k9Mplayer/k9mplayer.cpp @@ -31,10 +31,10 @@ K9Mplayer::K9Mplayer(TQObject *parent,const char *name,const TQStringList args) bPlay->setPixmap(SmallIcon("media-playback-start")); bStop->setPixmap(SmallIcon("media-playback-stop")); bSwitchAudio->setPixmap(SmallIcon("cycle")); - connect(m_process,TQT_SIGNAL(receivedStdout( TDEProcess*, char*, int )),this,TQT_SLOT(receivedStdout( TDEProcess*, char*, int ))); + connect(m_process,TQ_SIGNAL(receivedStdout( TDEProcess*, char*, int )),this,TQ_SLOT(receivedStdout( TDEProcess*, char*, int ))); m_timer=new TQTimer(this); - connect(m_process,TQT_SIGNAL(wroteStdin( TDEProcess* )),this,TQT_SLOT(wroteStdin( TDEProcess* ))); - connect(m_timer,TQT_SIGNAL(timeout()),this,TQT_SLOT(timeout())); + connect(m_process,TQ_SIGNAL(wroteStdin( TDEProcess* )),this,TQ_SLOT(wroteStdin( TDEProcess* ))); + connect(m_timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(timeout())); m_container=new TQWidget(Label); } |