diff options
-rw-r--r-- | kdesudo/kdesudo.cpp | 4 | ||||
-rw-r--r-- | kdesudo/kdesudo.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kdesudo/kdesudo.cpp b/kdesudo/kdesudo.cpp index 6936724..41209be 100644 --- a/kdesudo/kdesudo.cpp +++ b/kdesudo/kdesudo.cpp @@ -43,8 +43,8 @@ #include <sys/stat.h> #include <sys/types.h> -KdeSudo::KdeSudo(TQWidget *tqparent, const char *name,const TQString& icon, const TQString& generic, bool withIgnoreButton) - : KPasswordDialog(KPasswordDialog::Password, false, (withIgnoreButton ? User1: false), icon, tqparent, name) +KdeSudo::KdeSudo(TQWidget *parent, const char *name,const TQString& icon, const TQString& generic, bool withIgnoreButton) + : KPasswordDialog(KPasswordDialog::Password, false, (withIgnoreButton ? User1: false), icon, parent, name) { KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); diff --git a/kdesudo/kdesudo.h b/kdesudo/kdesudo.h index 66761dd..46451d3 100644 --- a/kdesudo/kdesudo.h +++ b/kdesudo/kdesudo.h @@ -52,7 +52,7 @@ public: /* * Default construtor */ - KdeSudo(TQWidget* tqparent=0, const char *name=0, const TQString& icon=TQString(), const TQString& generic=TQString(), bool withIgnoreButton=false); + KdeSudo(TQWidget* parent=0, const char *name=0, const TQString& icon=TQString(), const TQString& generic=TQString(), bool withIgnoreButton=false); /* * Default destructor |