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-04 10:14:40 +0900 |
| commit | b023e0397971a8bf160f67f03da84e8389ad27b6 (patch) | |
| tree | 3771e178b5559341134c62a53ff0390b2149a635 /src/part/part.cpp | |
| parent | 7c2b90bd69ea9078e888c494918ba7f5a03949ff (diff) | |
| download | codeine-b023e039.tar.gz codeine-b023e039.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/part/part.cpp')
| -rw-r--r-- | src/part/part.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/part/part.cpp b/src/part/part.cpp index 37d888e..1b36717 100644 --- a/src/part/part.cpp +++ b/src/part/part.cpp @@ -35,8 +35,8 @@ namespace Codeine //FIXME this will terminate the host, eg Konqueror
Debug::fatal() << "Couldn't init xine!\n";
- TDEAction *play = new TDEToggleAction( i18n("Play"), "media-playback-start", TQt::Key_Space, videoWindow(), SLOT(togglePlay()), actionCollection(), "play" );
- TDEAction *mute = new TDEToggleAction( i18n("Mute"), "player_mute", TQt::Key_M, videoWindow(), SLOT(toggleMute()), actionCollection(), "mute" );
+ TDEAction *play = new TDEToggleAction( i18n("Play"), "media-playback-start", TQt::Key_Space, videoWindow(), TQ_SLOT(togglePlay()), actionCollection(), "play" );
+ TDEAction *mute = new TDEToggleAction( i18n("Mute"), "player_mute", TQt::Key_M, videoWindow(), TQ_SLOT(toggleMute()), actionCollection(), "mute" );
TDEToolBar *toolBar = new MouseOverToolBar( widget() );
play->plug( toolBar );
mute->plug( toolBar );
@@ -46,8 +46,8 @@ namespace Codeine toolBar->addSeparator(); //FIXME ugly
TQObject *o = (TQObject*)statusBar();
- connect( videoWindow(), SIGNAL(statusMessage( const TQString& )), o, SLOT(message( const TQString& )) );
- connect( videoWindow(), SIGNAL(titleChanged( const TQString& )), o, SLOT(message( const TQString& )) ); //FIXME
+ connect( videoWindow(), TQ_SIGNAL(statusMessage( const TQString& )), o, TQ_SLOT(message( const TQString& )) );
+ connect( videoWindow(), TQ_SIGNAL(titleChanged( const TQString& )), o, TQ_SLOT(message( const TQString& )) ); //FIXME
}
bool
|
