From 75112ed8e227f656f98523b7ffdad5422d9a6f11 Mon Sep 17 00:00:00 2001
From: Timothy Pearson <kb9vqf@pearsoncomputing.net>
Date: Mon, 19 Dec 2011 11:52:34 -0600
Subject: Remove additional unneeded tq method conversions

---
 kaddressbook-plugins/xxports/gmx/gmx_xxport.cpp         | 10 +++++-----
 kaddressbook-plugins/xxports/kworldclock/geo_xxport.cpp | 12 ++++++------
 2 files changed, 11 insertions(+), 11 deletions(-)

(limited to 'kaddressbook-plugins')

diff --git a/kaddressbook-plugins/xxports/gmx/gmx_xxport.cpp b/kaddressbook-plugins/xxports/gmx/gmx_xxport.cpp
index ea3ab6e..7a80f89 100644
--- a/kaddressbook-plugins/xxports/gmx/gmx_xxport.cpp
+++ b/kaddressbook-plugins/xxports/gmx/gmx_xxport.cpp
@@ -80,7 +80,7 @@ KABC::AddresseeList GMXXXPort::importContacts( const TQString& ) const
   TQFile file( fileName );
   if ( !file.open( IO_ReadOnly ) ) {
     TQString msg = i18n( "<qt>Unable to open <b>%1</b> for reading.</qt>" );
-    KMessageBox::error( parentWidget(), msg.tqarg( fileName ) );
+    KMessageBox::error( parentWidget(), msg.arg( fileName ) );
     return addrList;
   }
 
@@ -91,7 +91,7 @@ KABC::AddresseeList GMXXXPort::importContacts( const TQString& ) const
   line  = gmxStream.readLine();
   line2 = gmxStream.readLine();
   if (!line.startsWith("AB_ADDRESSES:") || !line2.startsWith("Address_id")) {
-	KMessageBox::error( parentWidget(), i18n("%1 is not a GMX address book file.").tqarg(fileName) );
+	KMessageBox::error( parentWidget(), i18n("%1 is not a GMX address book file.").arg(fileName) );
 	return addrList;
   }
 
@@ -214,8 +214,8 @@ bool GMXXXPort::exportContacts( const KABC::AddresseeList &list, const TQString&
     KTempFile tmpFile;
     if ( tmpFile.status() != 0 ) {
       TQString txt = i18n( "<qt>Unable to open file <b>%1</b>.%2.</qt>" );
-      KMessageBox::error( parentWidget(), txt.tqarg( url.url() )
-                          .tqarg( strerror( tmpFile.status() ) ) );
+      KMessageBox::error( parentWidget(), txt.arg( url.url() )
+                          .arg( strerror( tmpFile.status() ) ) );
       return false;
     }
 
@@ -229,7 +229,7 @@ bool GMXXXPort::exportContacts( const KABC::AddresseeList &list, const TQString&
 
     if ( !file.open( IO_WriteOnly ) ) {
       TQString txt = i18n( "<qt>Unable to open file <b>%1</b>.</qt>" );
-      KMessageBox::error( parentWidget(), txt.tqarg( filename ) );
+      KMessageBox::error( parentWidget(), txt.arg( filename ) );
       return false;
     }
 
diff --git a/kaddressbook-plugins/xxports/kworldclock/geo_xxport.cpp b/kaddressbook-plugins/xxports/kworldclock/geo_xxport.cpp
index 51a37ac..3d07955 100644
--- a/kaddressbook-plugins/xxports/kworldclock/geo_xxport.cpp
+++ b/kaddressbook-plugins/xxports/kworldclock/geo_xxport.cpp
@@ -58,9 +58,9 @@ bool GeoXXPort::exportContacts( const KABC::AddresseeList &list, const TQString&
   if ( flags != 0 ) {
     for ( int i = 0; i < flags; ++i ) {
       FlagInfo info;
-      info.latitude = config.readDoubleNumEntry( TQString( "Flag_%1_Latitude" ).tqarg( i ) );
-      info.longitude = config.readDoubleNumEntry( TQString( "Flag_%1_Longitude" ).tqarg( i ) );
-      info.color = config.readColorEntry( TQString( "Flag_%1_Color" ).tqarg( i ) );
+      info.latitude = config.readDoubleNumEntry( TQString( "Flag_%1_Latitude" ).arg( i ) );
+      info.longitude = config.readDoubleNumEntry( TQString( "Flag_%1_Longitude" ).arg( i ) );
+      info.color = config.readColorEntry( TQString( "Flag_%1_Color" ).arg( i ) );
 
       availableFlags.append( info );
     }
@@ -102,9 +102,9 @@ bool GeoXXPort::exportContacts( const KABC::AddresseeList &list, const TQString&
   int startVal = 0;
   TQValueList<FlagInfo>::Iterator it;
   for ( it = flagList.begin(); it != flagList.end(); ++it, ++startVal ) {
-    config.writeEntry( TQString( "Flag_%1_Color" ).tqarg( startVal ), (*it).color );
-    config.writeEntry( TQString( "Flag_%1_Latitude" ).tqarg( startVal ), (*it).latitude );
-    config.writeEntry( TQString( "Flag_%1_Longitude" ).tqarg( startVal ), (*it).longitude );
+    config.writeEntry( TQString( "Flag_%1_Color" ).arg( startVal ), (*it).color );
+    config.writeEntry( TQString( "Flag_%1_Latitude" ).arg( startVal ), (*it).latitude );
+    config.writeEntry( TQString( "Flag_%1_Longitude" ).arg( startVal ), (*it).longitude );
   }
   config.writeEntry( "Flags", startVal );
 
-- 
cgit v1.2.1