diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:22:52 +0900 |
| commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
| tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kpresenter/KPrMSPresentationSetup.cpp | |
| parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
| download | koffice-e1b37ac1.tar.gz koffice-e1b37ac1.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kpresenter/KPrMSPresentationSetup.cpp')
| -rw-r--r-- | kpresenter/KPrMSPresentationSetup.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kpresenter/KPrMSPresentationSetup.cpp b/kpresenter/KPrMSPresentationSetup.cpp index 40343fb18..0436a7f3e 100644 --- a/kpresenter/KPrMSPresentationSetup.cpp +++ b/kpresenter/KPrMSPresentationSetup.cpp @@ -312,10 +312,10 @@ KPrMSPresentationSetup::KPrMSPresentationSetup( KPrDocument *_doc, KPrView *_vie pathLayout->addWidget(lable2); pathLayout->addWidget(path); - connect( path, TQT_SIGNAL( textChanged(const TQString&) ), - this, TQT_SLOT( slotChoosePath(const TQString&) ) ); - connect( path, TQT_SIGNAL( urlSelected( const TQString&) ), - this, TQT_SLOT( slotChoosePath(const TQString&) ) ); + connect( path, TQ_SIGNAL( textChanged(const TQString&) ), + this, TQ_SLOT( slotChoosePath(const TQString&) ) ); + connect( path, TQ_SIGNAL( urlSelected( const TQString&) ), + this, TQ_SLOT( slotChoosePath(const TQString&) ) ); TQLabel *lable1 = new TQLabel( i18n("Title:"), this, "lable1" ); @@ -331,7 +331,7 @@ KPrMSPresentationSetup::KPrMSPresentationSetup( KPrDocument *_doc, KPrView *_vie TQHBox *moreBox = new TQHBox( this ); TQPushButton *showColourButton = new TQPushButton( i18n("&Set Colors"), moreBox ); showColourButton->setToggleButton( true ); - connect( showColourButton, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( showColourGroup(bool) ) ); + connect( showColourButton, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( showColourGroup(bool) ) ); TQVBoxLayout *topLayout = new TQVBoxLayout; topLayout->addWidget( helptext ); @@ -388,9 +388,9 @@ KPrMSPresentationSetup::KPrMSPresentationSetup( KPrDocument *_doc, KPrView *_vie mainLayout->setResizeMode( TQLayout::Fixed ); mainLayout->setGeometry( TQRect( 0, 0, 300, 220 ) ); - connect( helpButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT ( helpMe() ) ); - connect( cancelButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) ); - connect( createButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( finish() ) ); + connect( helpButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT ( helpMe() ) ); + connect( cancelButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( reject() ) ); + connect( createButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( finish() ) ); } KPrMSPresentationSetup::~KPrMSPresentationSetup() @@ -605,7 +605,7 @@ void KPrMSPresentationCreateDialog::setupGUI() bDone->setEnabled( false ); - connect( bDone, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) ); + connect( bDone, TQ_SIGNAL( clicked() ), this, TQ_SLOT( accept() ) ); } void KPrMSPresentationCreateDialog::resizeEvent( TQResizeEvent *e ) |
