summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/configguigpe.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:59:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:59:01 -0600
commit716a5de8870d7c02bb4d0aed72f30291b17b763a (patch)
tree29e58b213ead28151ccf7eb33d12c968ea844120 /kitchensync/src/configguigpe.cpp
parent0e00c0a86a4c9d7e80c7b66d91940cc7dcb79f78 (diff)
downloadtdepim-716a5de8870d7c02bb4d0aed72f30291b17b763a.tar.gz
tdepim-716a5de8870d7c02bb4d0aed72f30291b17b763a.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kitchensync/src/configguigpe.cpp')
-rw-r--r--kitchensync/src/configguigpe.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kitchensync/src/configguigpe.cpp b/kitchensync/src/configguigpe.cpp
index 118aed14..c6e6627f 100644
--- a/kitchensync/src/configguigpe.cpp
+++ b/kitchensync/src/configguigpe.cpp
@@ -68,11 +68,11 @@ TQString ConfigGuiGpe::save() const
{
TQString config = "<config>";
- config += TQString( "<use_local>%1</use_local>" ).tqarg( mConnectionMode->currentItem() == 0 );
- config += TQString( "<use_ssh>%1</use_ssh>" ).tqarg( mConnectionMode->currentItem() == 1 );
- config += TQString( "<handheld_ip>%1</handheld_ip>" ).tqarg( mIP->text() );
- config += TQString( "<handheld_port>%1</handheld_port>" ).tqarg( mPort->value() );
- config += TQString( "<handheld_user>%1</handheld_user>" ).tqarg( mUser->text() );
+ config += TQString( "<use_local>%1</use_local>" ).arg( mConnectionMode->currentItem() == 0 );
+ config += TQString( "<use_ssh>%1</use_ssh>" ).arg( mConnectionMode->currentItem() == 1 );
+ config += TQString( "<handheld_ip>%1</handheld_ip>" ).arg( mIP->text() );
+ config += TQString( "<handheld_port>%1</handheld_port>" ).arg( mPort->value() );
+ config += TQString( "<handheld_user>%1</handheld_user>" ).arg( mUser->text() );
config += "</config>";