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 | 625904bd3097f9749450428904ca14ff2531824d (patch) | |
tree | a45c43d5de71cb720078fa1272a4339815a919be /ksim/library/progress.cpp | |
parent | 6335dc55802871b5a43492f217b6edbb420204c4 (diff) | |
download | tdeutils-625904bd3097f9749450428904ca14ff2531824d.tar.gz tdeutils-625904bd3097f9749450428904ca14ff2531824d.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/library/progress.cpp')
-rw-r--r-- | ksim/library/progress.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ksim/library/progress.cpp b/ksim/library/progress.cpp index bbdbd61..e37cff1 100644 --- a/ksim/library/progress.cpp +++ b/ksim/library/progress.cpp @@ -40,17 +40,17 @@ class KSim::Progress::Private }; KSim::Progress::Progress(int maxValue, - TQWidget *tqparent, const char *name, - WFlags fl) : KSim::Label(tqparent, name, fl) + TQWidget *parent, const char *name, + WFlags fl) : KSim::Label(parent, name, fl) { init(maxValue); configureObject(); } KSim::Progress::Progress(int maxValue, - int type, const TQString &label, TQWidget *tqparent, + int type, const TQString &label, TQWidget *parent, const char *name, WFlags fl) - : KSim::Label(type, label, tqparent, name, fl) + : KSim::Label(type, label, parent, name, fl) { init(maxValue); configureObject(); @@ -58,17 +58,17 @@ KSim::Progress::Progress(int maxValue, KSim::Progress::Progress(int maxValue, int type, const TQString &label, int value, - TQWidget *tqparent, const char *name, WFlags fl) - : KSim::Label(type, label, tqparent, name, fl) + TQWidget *parent, const char *name, WFlags fl) + : KSim::Label(type, label, parent, name, fl) { init(maxValue, value); configureObject(); } KSim::Progress::Progress(int maxValue, - int type, TQWidget *tqparent, + int type, TQWidget *parent, const char *name, WFlags fl) - : KSim::Label(type, tqparent, name, fl) + : KSim::Label(type, parent, name, fl) { init(maxValue); configureObject(); @@ -76,8 +76,8 @@ KSim::Progress::Progress(int maxValue, KSim::Progress::Progress(int maxValue, int type, ProgressType progressType, - TQWidget *tqparent, const char *name, WFlags fl) - : KSim::Label(type, tqparent, name, fl) + TQWidget *parent, const char *name, WFlags fl) + : KSim::Label(type, parent, name, fl) { init(maxValue, 0, progressType); configureObject(); |