diff options
Diffstat (limited to 'korganizer/kotodoeditor.cpp')
| -rw-r--r-- | korganizer/kotodoeditor.cpp | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/korganizer/kotodoeditor.cpp b/korganizer/kotodoeditor.cpp index 9da33659..3a41d1ff 100644 --- a/korganizer/kotodoeditor.cpp +++ b/korganizer/kotodoeditor.cpp @@ -68,21 +68,21 @@ void KOTodoEditor::init()    setupRecurrence();    setupAttendeesTab(); -  connect( mGeneral, TQT_SIGNAL( dateTimeStrChanged( const TQString & ) ), -           mRecurrence, TQT_SLOT( setDateTimeStr( const TQString & ) ) ); -  connect( mGeneral, TQT_SIGNAL( signalDateTimeChanged( const TQDateTime &, const TQDateTime & ) ), -           mRecurrence, TQT_SLOT( setDateTimes( const TQDateTime &, const TQDateTime & ) ) ); +  connect( mGeneral, TQ_SIGNAL( dateTimeStrChanged( const TQString & ) ), +           mRecurrence, TQ_SLOT( setDateTimeStr( const TQString & ) ) ); +  connect( mGeneral, TQ_SIGNAL( signalDateTimeChanged( const TQDateTime &, const TQDateTime & ) ), +           mRecurrence, TQ_SLOT( setDateTimes( const TQDateTime &, const TQDateTime & ) ) ); -  connect( mGeneral, TQT_SIGNAL( openCategoryDialog() ), -           TQT_SIGNAL( editCategories() ) ); +  connect( mGeneral, TQ_SIGNAL( openCategoryDialog() ), +           TQ_SIGNAL( editCategories() ) ); -  connect( mDetails, TQT_SIGNAL(updateAttendeeSummary(int)), -           mGeneral, TQT_SLOT(updateAttendeeSummary(int)) ); +  connect( mDetails, TQ_SIGNAL(updateAttendeeSummary(int)), +           mGeneral, TQ_SLOT(updateAttendeeSummary(int)) ); -  connect( mGeneral, TQT_SIGNAL(editRecurrence()), -           mRecurrenceDialog, TQT_SLOT(show()) ); -  connect( mRecurrenceDialog, TQT_SIGNAL(okClicked()), -           TQT_SLOT(updateRecurrenceSummary()) ); +  connect( mGeneral, TQ_SIGNAL(editRecurrence()), +           mRecurrenceDialog, TQ_SLOT(show()) ); +  connect( mRecurrenceDialog, TQ_SIGNAL(okClicked()), +           TQ_SLOT(updateRecurrenceSummary()) );  }  void KOTodoEditor::reload() @@ -94,7 +94,7 @@ void KOTodoEditor::reload()  void KOTodoEditor::setupGeneral()  { -  mGeneral = new KOEditorGeneralTodo(TQT_TQOBJECT(this)); +  mGeneral = new KOEditorGeneralTodo(this);    if (KOPrefs::instance()->mCompactDialogs) {      TQFrame *topFrame = addPage(i18n("General")); @@ -131,10 +131,10 @@ void KOTodoEditor::setupGeneral()      mGeneral->iniStatus(topFrame,topLayout);      mGeneral->initDescription(topFrame,topLayout);      mGeneral->initAttachments(topFrame,topLayout); -    connect( mGeneral, TQT_SIGNAL( openURL( const KURL& ) ), -             this, TQT_SLOT( openURL( const KURL& ) ) ); -    connect( this, TQT_SIGNAL( signalAddAttachments( const TQStringList&, const TQStringList&, bool ) ), -             mGeneral, TQT_SLOT( addAttachments( const TQStringList&, const TQStringList&, bool ) ) ); +    connect( mGeneral, TQ_SIGNAL( openURL( const KURL& ) ), +             this, TQ_SLOT( openURL( const KURL& ) ) ); +    connect( this, TQ_SIGNAL( signalAddAttachments( const TQStringList&, const TQStringList&, bool ) ), +             mGeneral, TQ_SLOT( addAttachments( const TQStringList&, const TQStringList&, bool ) ) );    }    mGeneral->finishSetup();  } | 
