From 3b3f9ec8f31978030c17309fae48335bea5c1587 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 14 Jan 2024 12:33:20 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- kalarm/birthdaydlg.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kalarm/birthdaydlg.cpp') diff --git a/kalarm/birthdaydlg.cpp b/kalarm/birthdaydlg.cpp index 51a86e945..0a1cd1576 100644 --- a/kalarm/birthdaydlg.cpp +++ b/kalarm/birthdaydlg.cpp @@ -91,7 +91,7 @@ BirthdayDlg::BirthdayDlg(TQWidget* parent) mPrefix = new BLineEdit(mPrefixText, textGroup); mPrefix->setMinimumSize(mPrefix->sizeHint()); label->setBuddy(mPrefix); - connect(mPrefix, TQT_SIGNAL(focusLost()), TQT_SLOT(slotTextLostFocus())); + connect(mPrefix, TQ_SIGNAL(focusLost()), TQ_SLOT(slotTextLostFocus())); TQWhatsThis::add(mPrefix, i18n("Enter text to appear before the person's name in the alarm message, " "including any necessary trailing spaces.")); @@ -100,7 +100,7 @@ BirthdayDlg::BirthdayDlg(TQWidget* parent) mSuffix = new BLineEdit(mSuffixText, textGroup); mSuffix->setMinimumSize(mSuffix->sizeHint()); label->setBuddy(mSuffix); - connect(mSuffix, TQT_SIGNAL(focusLost()), TQT_SLOT(slotTextLostFocus())); + connect(mSuffix, TQ_SIGNAL(focusLost()), TQ_SLOT(slotTextLostFocus())); TQWhatsThis::add(mSuffix, i18n("Enter text to appear after the person's name in the alarm message, " "including any necessary leading spaces.")); @@ -114,7 +114,7 @@ BirthdayDlg::BirthdayDlg(TQWidget* parent) mAddresseeList->setFullWidth(true); mAddresseeList->addColumn(i18n("Name")); mAddresseeList->addColumn(i18n("Birthday")); - connect(mAddresseeList, TQT_SIGNAL(selectionChanged()), TQT_SLOT(slotSelectionChanged())); + connect(mAddresseeList, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged())); TQWhatsThis::add(mAddresseeList, i18n("Select birthdays to set alarms for.\n" "This list shows all birthdays in KAddressBook except those for which alarms already exist.\n\n" @@ -198,7 +198,7 @@ void BirthdayDlg::loadAddressBook() #if KDE_IS_VERSION(3,1,90) mAddressBook = TDEABC::StdAddressBook::self(true); if (mAddressBook) - connect(mAddressBook, TQT_SIGNAL(addressBookChanged(AddressBook*)), TQT_SLOT(updateSelectionList())); + connect(mAddressBook, TQ_SIGNAL(addressBookChanged(AddressBook*)), TQ_SLOT(updateSelectionList())); #else mAddressBook = TDEABC::StdAddressBook::self(); if (mAddressBook) @@ -421,7 +421,7 @@ BListView::BListView(TQWidget* parent, const char* name) : TDEListView(parent, name) { TDEAccel* accel = new TDEAccel(this); - accel->insert(TDEStdAccel::SelectAll, this, TQT_SLOT(slotSelectAll())); - accel->insert(TDEStdAccel::Deselect, this, TQT_SLOT(slotDeselect())); + accel->insert(TDEStdAccel::SelectAll, this, TQ_SLOT(slotSelectAll())); + accel->insert(TDEStdAccel::Deselect, this, TQ_SLOT(slotDeselect())); accel->readSettings(); } -- cgit v1.2.1