summaryrefslogtreecommitdiffstats
path: root/wizards/scalixwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/scalixwizard.cpp')
-rw-r--r--wizards/scalixwizard.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/wizards/scalixwizard.cpp b/wizards/scalixwizard.cpp
index b9ecfa10..e1e1954c 100644
--- a/wizards/scalixwizard.cpp
+++ b/wizards/scalixwizard.cpp
@@ -43,7 +43,7 @@
#include <tqcheckbox.h>
#include <tqhbuttongroup.h>
#include <tqlabel.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqwhatsthis.h>
#include <unistd.h>
@@ -74,13 +74,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").tqarg(i) ) == host )
+ if ( c.readEntry( TQString("SelectedHost%1").arg(i) ) == host )
hasMyServer = true;
if ( !hasMyServer ) {
c.writeEntry( "NumSelectedHosts", selHosts + 1 );
- c.writeEntry( TQString("SelectedHost%1").tqarg(selHosts), host);
- c.writeEntry( TQString("SelectedBase%1").tqarg(selHosts), basedn);
- c.writeEntry( TQString("SelectedPort%1").tqarg(selHosts), "389");
+ c.writeEntry( TQString("SelectedHost%1").arg(selHosts), host);
+ c.writeEntry( TQString("SelectedBase%1").arg(selHosts), basedn);
+ c.writeEntry( TQString("SelectedPort%1").arg(selHosts), "389");
}
}