diff options
Diffstat (limited to 'kolf/config.cpp')
-rw-r--r-- | kolf/config.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kolf/config.cpp b/kolf/config.cpp index 54618a45..0d9aafae 100644 --- a/kolf/config.cpp +++ b/kolf/config.cpp @@ -6,8 +6,8 @@ #include "config.h" -Config::Config(TQWidget *tqparent, const char *name) - : TQFrame(tqparent, name) +Config::Config(TQWidget *parent, const char *name) + : TQFrame(parent, name) { startedUp = false; } @@ -33,15 +33,15 @@ void Config::changed() emit modified(); } -MessageConfig::MessageConfig(TQString text, TQWidget *tqparent, const char *name) - : Config(tqparent, name) +MessageConfig::MessageConfig(TQString text, TQWidget *parent, const char *name) + : Config(parent, name) { TQVBoxLayout *tqlayout = new TQVBoxLayout(this, marginHint(), spacingHint()); tqlayout->addWidget(new TQLabel(text, this)); } -DefaultConfig::DefaultConfig(TQWidget *tqparent, const char *name) - : MessageConfig(i18n("No configuration options"), tqparent, name) +DefaultConfig::DefaultConfig(TQWidget *parent, const char *name) + : MessageConfig(i18n("No configuration options"), parent, name) { } |