diff options
Diffstat (limited to 'kmix/kledbutton.cpp')
-rw-r--r-- | kmix/kledbutton.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmix/kledbutton.cpp b/kmix/kledbutton.cpp index 366263f4..7e9fbe02 100644 --- a/kmix/kledbutton.cpp +++ b/kmix/kledbutton.cpp @@ -24,17 +24,17 @@ #include "kledbutton.h" -KLedButton::KLedButton(const TQColor &col, TQWidget *tqparent, const char *name) - : KLed( col, tqparent, name ) +KLedButton::KLedButton(const TQColor &col, TQWidget *parent, const char *name) + : KLed( col, parent, name ) { // KLed and thus KLedButtung does not do proper positioning in TQLayout's. // Thus I will do a dirty trick here - installEventFilter(tqparent); + installEventFilter(parent); } KLedButton::KLedButton(const TQColor& col, KLed::State st, KLed::Look look, - KLed::Shape tqshape, TQWidget *tqparent, const char *name) - : KLed( col, st, look, tqshape, tqparent, name ) + KLed::Shape tqshape, TQWidget *parent, const char *name) + : KLed( col, st, look, tqshape, parent, name ) { } |