diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 20:22:52 +0900 |
commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kplato/kptcalendarlistdialog.cpp | |
parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
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() { |