From d51565add69f404d525fc7f79ff5480bff468a82 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Sun, 5 Jul 2026 10:27:55 +0900
Subject: Rename staticQString to staticTQString

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 kmail/kmsearchpattern.cpp     | 12 ++++++------
 libtdepim/addressesdialog.cpp |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/kmail/kmsearchpattern.cpp b/kmail/kmsearchpattern.cpp
index 114f4e8d..a6bef32a 100644
--- a/kmail/kmsearchpattern.cpp
+++ b/kmail/kmsearchpattern.cpp
@@ -128,9 +128,9 @@ KMSearchRule * KMSearchRule::createInstanceFromConfig( const TDEConfig * config,
 {
   const char cIdx = char( int('A') + aIdx );
 
-  static const TQString & field = TDEGlobal::staticQString( "field" );
-  static const TQString & func = TDEGlobal::staticQString( "func" );
-  static const TQString & contents = TDEGlobal::staticQString( "contents" );
+  static const TQString & field = TDEGlobal::staticTQString( "field" );
+  static const TQString & func = TDEGlobal::staticTQString( "func" );
+  static const TQString & contents = TDEGlobal::staticTQString( "contents" );
 
   const TQCString &field2 = config->readEntry( field + cIdx ).latin1();
   Function func2 = configValueToFunc( config->readEntry( func + cIdx ).latin1() );
@@ -162,9 +162,9 @@ TQString KMSearchRule::functionToString( Function function )
 
 void KMSearchRule::writeConfig( TDEConfig * config, int aIdx ) const {
   const char cIdx = char('A' + aIdx);
-  static const TQString & field = TDEGlobal::staticQString( "field" );
-  static const TQString & func = TDEGlobal::staticQString( "func" );
-  static const TQString & contents = TDEGlobal::staticQString( "contents" );
+  static const TQString & field = TDEGlobal::staticTQString( "field" );
+  static const TQString & func = TDEGlobal::staticTQString( "func" );
+  static const TQString & contents = TDEGlobal::staticTQString( "contents" );
 
   config->writeEntry( field + cIdx, TQString(mField) );
   config->writeEntry( func + cIdx, functionToString( mFunction ) );
diff --git a/libtdepim/addressesdialog.cpp b/libtdepim/addressesdialog.cpp
index f67a1071..cec329d8 100644
--- a/libtdepim/addressesdialog.cpp
+++ b/libtdepim/addressesdialog.cpp
@@ -321,7 +321,7 @@ AddressesDialog::setRecentAddresses( const TDEABC::Addressee::List& list )
 void
 AddressesDialog::updateRecentAddresses()
 {
-  static const TQString &recentGroup = TDEGlobal::staticQString( i18n( "Recent Addresses" ) );
+  static const TQString &recentGroup = TDEGlobal::staticTQString( i18n( "Recent Addresses" ) );
 
   if ( !d->recent ) {
     d->recent = new AddresseeViewItem( d->ui->mAvailableView, recentGroup );
@@ -461,7 +461,7 @@ AddressesDialog::updateAvailableAddressees()
   d->ui->mAvailableView->clear();
   d->groupDict.clear();
 
-  static const TQString &personalGroup = TDEGlobal::staticQString( i18n( "Other Addresses" ) );
+  static const TQString &personalGroup = TDEGlobal::staticTQString( i18n( "Other Addresses" ) );
   d->ui->mAvailableView->setRootIsDecorated( true );
   d->personal = new AddresseeViewItem( d->ui->mAvailableView, personalGroup );
   //connect(d->personal, TQ_SIGNAL(addressSelected(AddresseeViewItem*, bool)),
-- 
cgit v1.2.3

