diff options
Diffstat (limited to 'korganizer/exportwebdialog.cpp')
-rw-r--r-- | korganizer/exportwebdialog.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/korganizer/exportwebdialog.cpp b/korganizer/exportwebdialog.cpp index 156ed7027..a6b09b780 100644 --- a/korganizer/exportwebdialog.cpp +++ b/korganizer/exportwebdialog.cpp @@ -81,8 +81,8 @@ ExportWebDialog::ExportWebDialog( HTMLExportSettings *settings, TQWidget *parent // setupFreeBusyPage(); // setupAdvancedPage(); - connect( this, TQT_SIGNAL( user1Clicked() ), TQT_SLOT( slotOk() ) ); - connect( this, TQT_SIGNAL( cancelClicked() ), TQT_SLOT( reject() ) ); + connect( this, TQ_SIGNAL( user1Clicked() ), TQ_SLOT( slotOk() ) ); + connect( this, TQ_SIGNAL( cancelClicked() ), TQ_SLOT( reject() ) ); readConfig(); updateState(); @@ -149,9 +149,9 @@ void ExportWebDialog::setupGeneralPage() topLayout->addWidget( typeGroup ); // addWidBool( mSettings->weekViewItem(), typeGroup ); mMonthViewCheckBox = addWidBool( mSettings->monthViewItem(), typeGroup )->checkBox(); - connect( mMonthViewCheckBox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(updateState()) ); + connect( mMonthViewCheckBox, TQ_SIGNAL(toggled(bool)), TQ_SLOT(updateState()) ); mEventListCheckBox = addWidBool( mSettings->eventViewItem(), typeGroup )->checkBox(); - connect( mEventListCheckBox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(updateState()) ); + connect( mEventListCheckBox, TQ_SIGNAL(toggled(bool)), TQ_SLOT(updateState()) ); addWidBool( mSettings->todoViewItem(), typeGroup ); // addWidBool( mSettings->journalViewItem(), typeGroup ); // addWidBool( mSettings->freeBusyViewItem(), typeGroup ); @@ -162,8 +162,8 @@ void ExportWebDialog::setupGeneralPage() topLayout->addWidget(destGroup); KPrefsWidPath *pathWid = addWidPath( mSettings->outputFileItem(), destGroup, "text/html", KFile::File ); - connect( pathWid->urlRequester(), TQT_SIGNAL( textChanged( const TQString & ) ), - TQT_SLOT( slotTextChanged( const TQString & ) ) ); + connect( pathWid->urlRequester(), TQ_SIGNAL( textChanged( const TQString & ) ), + TQ_SLOT( slotTextChanged( const TQString & ) ) ); topLayout->addStretch( 1 ); } |