diff options
Diffstat (limited to 'kplato/kptcalendaredit.cpp')
-rw-r--r-- | kplato/kptcalendaredit.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kplato/kptcalendaredit.cpp b/kplato/kptcalendaredit.cpp index 427645d7..46c05230 100644 --- a/kplato/kptcalendaredit.cpp +++ b/kplato/kptcalendaredit.cpp @@ -59,15 +59,15 @@ CalendarEdit::CalendarEdit (TQWidget *parent, const char */*name*/) intervalList->setShowSortIndicator(true); intervalList->setSorting(0); - connect (calendarPanel, TQT_SIGNAL(dateChanged(TQDate)), TQT_SLOT(slotDateSelected(TQDate))); - connect (calendarPanel, TQT_SIGNAL(weekdaySelected(int)), TQT_SLOT(slotWeekdaySelected(int))); - connect(calendarPanel, TQT_SIGNAL(selectionCleared()), TQT_SLOT(slotSelectionCleared())); + connect (calendarPanel, TQ_SIGNAL(dateChanged(TQDate)), TQ_SLOT(slotDateSelected(TQDate))); + connect (calendarPanel, TQ_SIGNAL(weekdaySelected(int)), TQ_SLOT(slotWeekdaySelected(int))); + connect(calendarPanel, TQ_SIGNAL(selectionCleared()), TQ_SLOT(slotSelectionCleared())); - connect (state, TQT_SIGNAL(activated(int)), TQT_SLOT(slotStateActivated(int))); - connect (bClear, TQT_SIGNAL(clicked()), TQT_SLOT(slotClearClicked())); - connect (bAddInterval, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddIntervalClicked())); + connect (state, TQ_SIGNAL(activated(int)), TQ_SLOT(slotStateActivated(int))); + connect (bClear, TQ_SIGNAL(clicked()), TQ_SLOT(slotClearClicked())); + connect (bAddInterval, TQ_SIGNAL(clicked()), TQ_SLOT(slotAddIntervalClicked())); - connect (bApply, TQT_SIGNAL(clicked()), TQT_SLOT(slotApplyClicked())); + connect (bApply, TQ_SIGNAL(clicked()), TQ_SLOT(slotApplyClicked())); } void CalendarEdit::slotStateActivated(int id) { |