summaryrefslogtreecommitdiffstats
path: root/wizards/kolabwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/kolabwizard.cpp')
-rw-r--r--wizards/kolabwizard.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/wizards/kolabwizard.cpp b/wizards/kolabwizard.cpp
index 37feb329..36e99bfb 100644
--- a/wizards/kolabwizard.cpp
+++ b/wizards/kolabwizard.cpp
@@ -38,7 +38,7 @@
#include <tqcheckbox.h>
#include <tqhbuttongroup.h>
#include <tqlabel.h>
-#include <layout.h>
+#include <tqlayout.h>
#include <tqradiobutton.h>
#include <tqwhatsthis.h>
@@ -81,13 +81,13 @@ class SetupLDAPSearchAccount : public KConfigPropagator::Change
bool hasMyServer = false;
uint selHosts = c.readNumEntry("NumSelectedHosts", 0);
for ( uint i = 0 ; i < selHosts && !hasMyServer; ++i )
- if ( c.readEntry( TQString("SelectedHost%1").arg(i) ) == host )
+ if ( c.readEntry( TQString("SelectedHost%1").tqarg(i) ) == host )
hasMyServer = true;
if ( !hasMyServer ) {
c.writeEntry( "NumSelectedHosts", selHosts + 1 );
- c.writeEntry( TQString("SelectedHost%1").arg(selHosts), host);
- c.writeEntry( TQString("SelectedBase%1").arg(selHosts), basedn);
- c.writeEntry( TQString("SelectedPort%1").arg(selHosts), "389");
+ c.writeEntry( TQString("SelectedHost%1").tqarg(selHosts), host);
+ c.writeEntry( TQString("SelectedBase%1").tqarg(selHosts), basedn);
+ c.writeEntry( TQString("SelectedPort%1").tqarg(selHosts), "389");
}
}