summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrMSPresentationSetup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 12:36:03 +0900
commitc0332621bc998c9786f4841e86a62b7711fe4abf (patch)
tree38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /kpresenter/KPrMSPresentationSetup.cpp
parent6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff)
downloadkoffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz
koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpresenter/KPrMSPresentationSetup.cpp')
-rw-r--r--kpresenter/KPrMSPresentationSetup.cpp18
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 )