summaryrefslogtreecommitdiffstats
path: root/kppp/pwentry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/pwentry.cpp')
-rw-r--r--kppp/pwentry.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kppp/pwentry.cpp b/kppp/pwentry.cpp
index e6cbea58..c3025762 100644
--- a/kppp/pwentry.cpp
+++ b/kppp/pwentry.cpp
@@ -30,10 +30,10 @@
#include <kglobalsettings.h>
#include "pwentry.h"
-PWEntry::PWEntry( TQWidget *tqparent, const char *name )
+PWEntry::PWEntry( TQWidget *parent, const char *name )
: TQWidget(NULL, name) {
- if(tqparent){
+ if(parent){
TQPoint point = mapToGlobal (TQPoint (0,0));
TQRect pos = tqgeometry();
@@ -43,7 +43,7 @@ PWEntry::PWEntry( TQWidget *tqparent, const char *name )
300,
90);
} else {
- TQRect desk = KGlobalSettings::desktopGeometry(tqparent);
+ TQRect desk = KGlobalSettings::desktopGeometry(parent);
setGeometry( desk.center().x() - 150, desk.center().y() - 50, 300, 90 );
}