From 418e8f7a6f6d79b2cbc9d83b29ef53d01582f826 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 21 Dec 2023 11:50:25 +0900 Subject: Replace various '#define' strings - part 6 Signed-off-by: Michele Calgaro --- kopete/plugins/history/historydialog.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kopete/plugins/history/historydialog.cpp') diff --git a/kopete/plugins/history/historydialog.cpp b/kopete/plugins/history/historydialog.cpp index 7a4e1795..01bff360 100644 --- a/kopete/plugins/history/historydialog.cpp +++ b/kopete/plugins/history/historydialog.cpp @@ -174,8 +174,8 @@ HistoryDialog::HistoryDialog(Kopete::MetaContact *mc, TQWidget* parent, //initActions TDEActionCollection* ac = new TDEActionCollection(this); - mCopyAct = KStdAction::copy( TQT_TQOBJECT(this), TQT_SLOT(slotCopy()), ac ); - mCopyURLAct = new TDEAction( i18n( "Copy Link Address" ), TQString::fromLatin1( "edit-copy" ), 0, TQT_TQOBJECT(this), TQT_SLOT( slotCopyURL() ), ac ); + mCopyAct = KStdAction::copy( this, TQT_SLOT(slotCopy()), ac ); + mCopyURLAct = new TDEAction( i18n( "Copy Link Address" ), TQString::fromLatin1( "edit-copy" ), 0, this, TQT_SLOT( slotCopyURL() ), ac ); resize(650, 700); centerOnScreen(this); @@ -196,7 +196,7 @@ void HistoryDialog::init() { if(mMetaContact) { - HistoryLogger logger(mMetaContact, TQT_TQOBJECT(this)); + HistoryLogger logger(mMetaContact, this); init(mMetaContact); } else @@ -204,7 +204,7 @@ void HistoryDialog::init() TQPtrListIterator it(mMetaContactList); for(; it.current(); ++it) { - HistoryLogger logger(*it, TQT_TQOBJECT(this)); + HistoryLogger logger(*it, this); init(*it); } @@ -226,7 +226,7 @@ void HistoryDialog::slotLoadDays() DMPair pair(mInit.dateMCList.first()); mInit.dateMCList.pop_front(); - HistoryLogger logger(pair.metaContact(), TQT_TQOBJECT(this)); + HistoryLogger logger(pair.metaContact(), this); TQValueList dayList = logger.getDaysForMonth(pair.date()); for (unsigned int i=0; idate(); - HistoryLogger logger(item->metaContact(), TQT_TQOBJECT(this)); + HistoryLogger logger(item->metaContact(), this); TQValueList msgs=logger.readMessages(chosenDate); setMessages(msgs); -- cgit v1.2.3