summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/configguisyncmlobex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kitchensync/src/configguisyncmlobex.cpp')
-rw-r--r--kitchensync/src/configguisyncmlobex.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kitchensync/src/configguisyncmlobex.cpp b/kitchensync/src/configguisyncmlobex.cpp
index 479593e5a..61833b4eb 100644
--- a/kitchensync/src/configguisyncmlobex.cpp
+++ b/kitchensync/src/configguisyncmlobex.cpp
@@ -28,7 +28,7 @@
#include <klocale.h>
#include <kurlrequester.h>
-#include <layout.h>
+#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqlabel.h>
@@ -246,7 +246,7 @@ TQString ConfigGuiSyncmlObex::save() const
ConnectionTypeList::ConstIterator it;
for ( it = mConnectionTypes.begin(); it != mConnectionTypes.end(); it++ ) {
if ( mConnection->currentText() == (*it).second ) {
- xml += "<type>" + TQString("%1").arg((*it).first) + "</type>\n";
+ xml += "<type>" + TQString("%1").tqarg((*it).first) + "</type>\n";
break;
}
}
@@ -264,7 +264,7 @@ TQString ConfigGuiSyncmlObex::save() const
SyncmlVersionList::ConstIterator itVersion;
for ( itVersion = mSyncmlVersions.begin(); itVersion != mSyncmlVersions.end(); itVersion++ ) {
if ( mSyncmlVersion->currentText() == (*itVersion).second ) {
- xml += "<version>" + TQString("%1").arg((*itVersion).first) + "</version>\n";
+ xml += "<version>" + TQString("%1").tqarg((*itVersion).first) + "</version>\n";
break;
}
}