diff options
Diffstat (limited to 'kplato/kptcalendarlistdialog.cpp')
-rw-r--r-- | kplato/kptcalendarlistdialog.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kplato/kptcalendarlistdialog.cpp b/kplato/kptcalendarlistdialog.cpp index 496cc786..4df39d2e 100644 --- a/kplato/kptcalendarlistdialog.cpp +++ b/kplato/kptcalendarlistdialog.cpp @@ -188,7 +188,7 @@ CalendarListDialog::CalendarListDialog(Project &p, TQWidget *parent, const char setMainWidget(dia); enableButtonOK(false); - connect(dia, TQT_SIGNAL(enableButtonOk(bool)), TQT_SLOT(enableButtonOK(bool))); + connect(dia, TQ_SIGNAL(enableButtonOk(bool)), TQ_SLOT(enableButtonOK(bool))); } KCommand *CalendarListDialog::buildCommand(Part *part) { @@ -239,23 +239,23 @@ CalendarListDialogImpl::CalendarListDialogImpl (Project &p, TQWidget *parent) slotSelectionChanged(); - connect(calendar, TQT_SIGNAL(obligatedFieldsFilled(bool)), TQT_SLOT(slotEnableButtonOk(bool))); - connect(calendar, TQT_SIGNAL(applyClicked()), TQT_SLOT(slotCalendarModified())); + connect(calendar, TQ_SIGNAL(obligatedFieldsFilled(bool)), TQ_SLOT(slotEnableButtonOk(bool))); + connect(calendar, TQ_SIGNAL(applyClicked()), TQ_SLOT(slotCalendarModified())); - connect(bDelete, TQT_SIGNAL(clicked()), TQT_SLOT(slotDeleteClicked())); - connect(bAdd, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddClicked())); - //connect(editName, TQT_SIGNAL(returnPressed()), TQT_SLOT(slotAddClicked())); + connect(bDelete, TQ_SIGNAL(clicked()), TQ_SLOT(slotDeleteClicked())); + connect(bAdd, TQ_SIGNAL(clicked()), TQ_SLOT(slotAddClicked())); + //connect(editName, TQ_SIGNAL(returnPressed()), TQ_SLOT(slotAddClicked())); - connect(calendarList, TQT_SIGNAL(selectionChanged()), TQT_SLOT(slotSelectionChanged())); - connect(calendarList, TQT_SIGNAL(doubleClicked(TQListViewItem*, const TQPoint&, int)), TQT_SLOT(slotListDoubleClicked(TQListViewItem*, const TQPoint&, int))); - connect(calendarList, TQT_SIGNAL(itemRenamed(TQListViewItem*, int)), TQT_SLOT(slotItemRenamed(TQListViewItem*, int))); + connect(calendarList, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged())); + connect(calendarList, TQ_SIGNAL(doubleClicked(TQListViewItem*, const TQPoint&, int)), TQ_SLOT(slotListDoubleClicked(TQListViewItem*, const TQPoint&, int))); + connect(calendarList, TQ_SIGNAL(itemRenamed(TQListViewItem*, int)), TQ_SLOT(slotItemRenamed(TQListViewItem*, int))); - connect (baseCalendar, TQT_SIGNAL(activated(int)), TQT_SLOT(slotBaseCalendarActivated(int))); + connect (baseCalendar, TQ_SIGNAL(activated(int)), TQ_SLOT(slotBaseCalendarActivated(int))); // Internal rename stuff - connect(this, TQT_SIGNAL(renameStarted(TQListViewItem*, int)), TQT_SLOT(slotRenameStarted(TQListViewItem*, int))); - connect(this, TQT_SIGNAL(startRename(TQListViewItem*, int)), TQT_SLOT(slotStartRename(TQListViewItem*, int))); - connect(this, TQT_SIGNAL(selectionChanged()), TQT_SLOT(slotSelectionChanged())); + connect(this, TQ_SIGNAL(renameStarted(TQListViewItem*, int)), TQ_SLOT(slotRenameStarted(TQListViewItem*, int))); + connect(this, TQ_SIGNAL(startRename(TQListViewItem*, int)), TQ_SLOT(slotStartRename(TQListViewItem*, int))); + connect(this, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged())); } void CalendarListDialogImpl::setBaseCalendars() { |