summaryrefslogtreecommitdiffstats
path: root/kuser/selectconn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kuser/selectconn.cpp')
-rw-r--r--kuser/selectconn.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kuser/selectconn.cpp b/kuser/selectconn.cpp
index 138c9ce..d661fb1 100644
--- a/kuser/selectconn.cpp
+++ b/kuser/selectconn.cpp
@@ -33,8 +33,8 @@
#include "selectconn.h"
#include "editDefaults.h"
-SelectConn::SelectConn(const TQString &selected, TQWidget* parent, const char * name) :
- KDialogBase( Plain, WStyle_DialogBorder, parent, name, true,
+SelectConn::SelectConn(const TQString &selected, TQWidget* tqparent, const char * name) :
+ KDialogBase( Plain, WStyle_DialogBorder, tqparent, name, true,
i18n("Connection Selection"), Ok | Apply | Cancel | User1 | User2 | User3 )
{
TQStringList conns;
@@ -77,10 +77,10 @@ TQString SelectConn::connSelected()
void SelectConn::slotUser3()
{
- newconn = KInputDialog::getText( TQString::null,
+ newconn = KInputDialog::getText( TQString(),
i18n("Please type the name of the new connection:") );
if ( newconn.isEmpty() ) return;
- if ( kapp->sharedConfig()->groupList().contains( "connection-" + newconn ) ) {
+ if ( kapp->sharedConfig()->groupList().tqcontains( "connection-" + newconn ) ) {
KMessageBox::sorry( 0, i18n("A connection with this name already exists.") );
return;
}