diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:46:19 +0900 |
commit | e9d5585a3efa2fafce1a10dccc411ad2315732de (patch) | |
tree | cfa24b1224501cc1ede539e67db5add336821aca /src/part/settingsDialog.cpp | |
parent | 1a75f32008be8c5bcb3add8055f1db5ae8bd602f (diff) | |
download | filelight-e9d5585a3efa2fafce1a10dccc411ad2315732de.tar.gz filelight-e9d5585a3efa2fafce1a10dccc411ad2315732de.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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" ) ); |