diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:50:11 +0900 |
commit | 27c4f9d521b001349222740b1980871cc62f6cf4 (patch) | |
tree | 78c18fcd45d9044c3040990d641b87bb64c2f2b9 /src/part/settingsDialog.cpp | |
parent | 2725bd4a283a9b1ea7baae06694c16830d89f62f (diff) | |
download | filelight-27c4f9d5.tar.gz filelight-27c4f9d5.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e9d5585a3efa2fafce1a10dccc411ad2315732de)
Diffstat (limited to 'src/part/settingsDialog.cpp')
-rw-r--r-- | src/part/settingsDialog.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/part/settingsDialog.cpp b/src/part/settingsDialog.cpp index fe408a7..aac6d88 100644 --- a/src/part/settingsDialog.cpp +++ b/src/part/settingsDialog.cpp @@ -30,26 +30,26 @@ SettingsDialog::SettingsDialog( TQWidget *parent, const char *name ) //read in settings before you make all those nasty connections! reset(); //makes dialog reflect global settings - connect( &m_timer, TQT_SIGNAL(timeout()), TQT_SIGNAL(mapIsInvalid()) ); + connect( &m_timer, TQ_SIGNAL(timeout()), TQ_SIGNAL(mapIsInvalid()) ); - connect( m_addButton, TQT_SIGNAL( clicked() ), TQT_SLOT( addDirectory() ) ); - connect( m_removeButton, TQT_SIGNAL( clicked() ), TQT_SLOT( removeDirectory() ) ); - connect( m_resetButton, TQT_SIGNAL( clicked() ), TQT_SLOT( reset() ) ); - connect( m_closeButton, TQT_SIGNAL( clicked() ), TQT_SLOT( close() ) ); + connect( m_addButton, TQ_SIGNAL( clicked() ), TQ_SLOT( addDirectory() ) ); + connect( m_removeButton, TQ_SIGNAL( clicked() ), TQ_SLOT( removeDirectory() ) ); + connect( m_resetButton, TQ_SIGNAL( clicked() ), TQ_SLOT( reset() ) ); + connect( m_closeButton, TQ_SIGNAL( clicked() ), TQ_SLOT( close() ) ); - connect( colourSchemeGroup, TQT_SIGNAL(clicked( int )), TQT_SLOT(changeScheme( int )) ); - connect( contrastSlider, TQT_SIGNAL(valueChanged( int )), TQT_SLOT(changeContrast( int )) ); - connect( contrastSlider, TQT_SIGNAL(sliderReleased()), TQT_SLOT(slotSliderReleased()) ); + connect( colourSchemeGroup, TQ_SIGNAL(clicked( int )), TQ_SLOT(changeScheme( int )) ); + connect( contrastSlider, TQ_SIGNAL(valueChanged( int )), TQ_SLOT(changeContrast( int )) ); + connect( contrastSlider, TQ_SIGNAL(sliderReleased()), TQ_SLOT(slotSliderReleased()) ); - connect( scanAcrossMounts, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( startTimer() ) ); - connect( dontScanRemoteMounts, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( startTimer() ) ); - connect( dontScanRemovableMedia, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( startTimer() ) ); + connect( scanAcrossMounts, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( startTimer() ) ); + connect( dontScanRemoteMounts, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( startTimer() ) ); + connect( dontScanRemovableMedia, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( startTimer() ) ); - connect( useAntialiasing, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( toggleUseAntialiasing( bool ) ) ); - connect( varyLabelFontSizes, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( toggleVaryLabelFontSizes( bool ) ) ); - connect( showSmallFiles, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( toggleShowSmallFiles( bool ) ) ); + connect( useAntialiasing, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( toggleUseAntialiasing( bool ) ) ); + connect( varyLabelFontSizes, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( toggleVaryLabelFontSizes( bool ) ) ); + connect( showSmallFiles, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( toggleShowSmallFiles( bool ) ) ); - connect( minFontPitch, TQT_SIGNAL ( valueChanged( int ) ), TQT_SLOT( changeMinFontPitch( int ) ) ); + connect( minFontPitch, TQ_SIGNAL ( valueChanged( int ) ), TQ_SLOT( changeMinFontPitch( int ) ) ); m_addButton->setIconSet( SmallIcon( "document-open" ) ); m_resetButton->setIconSet( SmallIcon( "edit-undo" ) ); |