summaryrefslogtreecommitdiffstats
path: root/src/app/volumeAction.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/volumeAction.cpp
parent7c2b90bd69ea9078e888c494918ba7f5a03949ff (diff)
downloadcodeine-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/app/volumeAction.cpp')
-rw-r--r--src/app/volumeAction.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/volumeAction.cpp b/src/app/volumeAction.cpp
index 0d8a181..e48dc27 100644
--- a/src/app/volumeAction.cpp
+++ b/src/app/volumeAction.cpp
@@ -53,10 +53,10 @@ VolumeAction::VolumeAction( TDEToolBar *bar, TDEActionCollection *ac )
{
m_widget = new VolumeSlider( bar->topLevelWidget() );
- connect( this, SIGNAL(toggled( bool )), SLOT(toggled( bool )) );
- connect( m_widget->slider, SIGNAL(sliderMoved( int )), SLOT(sliderMoved( int )) );
- connect( m_widget->slider, SIGNAL(sliderMoved( int )), Codeine::engine(), SLOT(setStreamParameter( int )) );
- connect( m_widget->slider, SIGNAL(sliderReleased()), SLOT(sliderReleased()) );
+ connect( this, TQ_SIGNAL(toggled( bool )), TQ_SLOT(toggled( bool )) );
+ connect( m_widget->slider, TQ_SIGNAL(sliderMoved( int )), TQ_SLOT(sliderMoved( int )) );
+ connect( m_widget->slider, TQ_SIGNAL(sliderMoved( int )), Codeine::engine(), TQ_SLOT(setStreamParameter( int )) );
+ connect( m_widget->slider, TQ_SIGNAL(sliderReleased()), TQ_SLOT(sliderReleased()) );
}
int