diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 12:34:35 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-18 19:03:13 +0900 |
| commit | ea1f5870db808971e833dd901aac2647d50634bd (patch) | |
| tree | 5eae36dbd282479c91ce1a65c2a7ef8edee0f619 /libkscan/imgscaledialog.cpp | |
| parent | 21cae41ae67ab4478efda7b6def53fcf7e8003bc (diff) | |
| download | tdegraphics-ea1f5870.tar.gz tdegraphics-ea1f5870.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c616fab9053b07ed30508ab714de876409d82653)
Diffstat (limited to 'libkscan/imgscaledialog.cpp')
| -rw-r--r-- | libkscan/imgscaledialog.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkscan/imgscaledialog.cpp b/libkscan/imgscaledialog.cpp index 2726baf9..05ccc8ec 100644 --- a/libkscan/imgscaledialog.cpp +++ b/libkscan/imgscaledialog.cpp @@ -45,8 +45,8 @@ ImgScaleDialog::ImgScaleDialog( TQWidget *parent, int curr_sel, TQ_CHECK_PTR(radios); radios->setTitle( i18n("Select Image Zoom") ); - connect( radios, TQT_SIGNAL( clicked( int )), - this, TQT_SLOT( setSelValue( int ))); + connect( radios, TQ_SIGNAL( clicked( int )), + this, TQ_SLOT( setSelValue( int ))); // left gap: smaller Image TQRadioButton *rb25 = new TQRadioButton (i18n ("25 %"), radios); @@ -109,10 +109,10 @@ ImgScaleDialog::ImgScaleDialog( TQWidget *parent, int curr_sel, sn.setNum(curr_sel ); leCust->setValidator( new KIntValidator( leCust ) ); leCust->setText(sn ); - connect( leCust, TQT_SIGNAL( textChanged( const TQString& )), - this, TQT_SLOT( customChanged( const TQString& ))); - connect( rbCust, TQT_SIGNAL( toggled( bool )), - this, TQT_SLOT(enableAndFocus(bool))); + connect( leCust, TQ_SIGNAL( textChanged( const TQString& )), + this, TQ_SLOT( customChanged( const TQString& ))); + connect( rbCust, TQ_SIGNAL( toggled( bool )), + this, TQ_SLOT(enableAndFocus(bool))); leCust->setEnabled( rbCust->isChecked()); |
