summaryrefslogtreecommitdiffstats
path: root/ksim/library/progress.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksim/library/progress.cpp')
-rw-r--r--ksim/library/progress.cpp20
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();