diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 12:36:03 +0900 |
commit | c0332621bc998c9786f4841e86a62b7711fe4abf (patch) | |
tree | 38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /kpresenter/KPrWebPresentation.cpp | |
parent | 6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff) | |
download | koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kpresenter/KPrWebPresentation.cpp')
-rw-r--r-- | kpresenter/KPrWebPresentation.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kpresenter/KPrWebPresentation.cpp b/kpresenter/KPrWebPresentation.cpp index 5d899847..5578b6b2 100644 --- a/kpresenter/KPrWebPresentation.cpp +++ b/kpresenter/KPrWebPresentation.cpp @@ -626,9 +626,9 @@ KPrWebPresentationWizard::KPrWebPresentationWizard( const TQString &_config, KPr setupPage4(); setupPage5(); - connect( nextButton(), TQT_SIGNAL( clicked() ), this, TQT_SLOT( pageChanged() ) ); - connect( backButton(), TQT_SIGNAL( clicked() ), this, TQT_SLOT( pageChanged() ) ); - connect( finishButton(), TQT_SIGNAL( clicked() ), this, TQT_SLOT( finish() ) ); + connect( nextButton(), TQ_SIGNAL( clicked() ), this, TQ_SLOT( pageChanged() ) ); + connect( backButton(), TQ_SIGNAL( clicked() ), this, TQ_SLOT( pageChanged() ) ); + connect( finishButton(), TQ_SIGNAL( clicked() ), this, TQ_SLOT( finish() ) ); } KPrWebPresentationWizard::~KPrWebPresentationWizard() @@ -734,10 +734,10 @@ void KPrWebPresentationWizard::setupPage1() TQSizePolicy::Minimum, TQSizePolicy::Expanding ); layout->addMultiCell( spacer, 6, 6, 0, 1 ); - 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&))); addPage( page1, i18n( "Step 1: General Information" ) ); @@ -928,15 +928,15 @@ void KPrWebPresentationWizard::setupPage4() slideTitle = new KLineEdit( canvas ); layout->addWidget( slideTitle, 1, 1 ); - connect( slideTitle, TQT_SIGNAL( textChanged( const TQString & ) ), this, - TQT_SLOT( slideTitleChanged( const TQString & ) ) ); + connect( slideTitle, TQ_SIGNAL( textChanged( const TQString & ) ), this, + TQ_SLOT( slideTitleChanged( const TQString & ) ) ); slideTitles = new TDEListView( canvas ); layout->addMultiCellWidget( slideTitles, 2, 2, 0, 1 ); slideTitles->addColumn( i18n( "No." ) ); slideTitles->addColumn( i18n( "Slide Title" ) ); - connect( slideTitles, TQT_SIGNAL( selectionChanged( TQListViewItem * ) ), this, - TQT_SLOT( slideTitleChanged( TQListViewItem * ) ) ); + connect( slideTitles, TQ_SIGNAL( selectionChanged( TQListViewItem * ) ), this, + TQ_SLOT( slideTitleChanged( TQListViewItem * ) ) ); slideTitles->setSorting( -1 ); slideTitles->setAllColumnsShowFocus( true ); slideTitles->setResizeMode( TQListView::LastColumn ); @@ -1269,8 +1269,8 @@ void KPrWebPresentationCreateDialog::setupGUI() bSave->setEnabled( false ); bDone->setEnabled( false ); - connect( bDone, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) ); - connect( bSave, TQT_SIGNAL( clicked() ), this, TQT_SLOT( saveConfig() ) ); + connect( bDone, TQ_SIGNAL( clicked() ), this, TQ_SLOT( accept() ) ); + connect( bSave, TQ_SIGNAL( clicked() ), this, TQ_SLOT( saveConfig() ) ); } void KPrWebPresentationCreateDialog::resizeEvent( TQResizeEvent *e ) |