From 3b66617d9d5f343c30a87381720db2fc835ce52b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 24 Nov 2023 10:56:22 +0900 Subject: Replaced various '#define' with actual strings - part 3 Signed-off-by: Michele Calgaro --- libtdepim/addresseelineedit.cpp | 2 +- libtdepim/distributionlist.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'libtdepim') diff --git a/libtdepim/addresseelineedit.cpp b/libtdepim/addresseelineedit.cpp index 68a16e117..d867768c0 100644 --- a/libtdepim/addresseelineedit.cpp +++ b/libtdepim/addresseelineedit.cpp @@ -763,7 +763,7 @@ void AddresseeLineEdit::addCompletionItem( const TQString& string, int weight, i weight = TQMAX( ( *it ).first, weight ); ( *it ).first = weight; } else { - s_completionItemMap->insert( string, tqMakePair( weight, completionItemSource ) ); + s_completionItemMap->insert( string, qMakePair( weight, completionItemSource ) ); } if ( keyWords == 0 ) s_completion->addItem( string, weight ); diff --git a/libtdepim/distributionlist.cpp b/libtdepim/distributionlist.cpp index 2fd50f5ac..74cb99ca3 100644 --- a/libtdepim/distributionlist.cpp +++ b/libtdepim/distributionlist.cpp @@ -44,7 +44,7 @@ static ParseList parseCustom( const TQString& str ) Q_ASSERT( helpList.count() < 3 ); // 1 or 2 items, but not more const TQString uid = helpList.first(); const TQString email = helpList.last(); - res.append( tqMakePair( uid, email ) ); + res.append( qMakePair( uid, email ) ); } return res; } -- cgit v1.2.1