diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | ddd5de9ccd9754687253d000b1ddd6651a7542c2 (patch) | |
tree | 913be4f06eab5348b158f313fb4f178506137b5e /kdesudo | |
parent | 9b36bdd41c992e4356a446cfb570206674c13275 (diff) | |
download | tdesudo-ddd5de9ccd9754687253d000b1ddd6651a7542c2.tar.gz tdesudo-ddd5de9ccd9754687253d000b1ddd6651a7542c2.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesudo@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdesudo')
-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 |