diff options
Diffstat (limited to 'kmix/viewswitches.cpp')
-rw-r--r-- | kmix/viewswitches.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmix/viewswitches.cpp b/kmix/viewswitches.cpp index cf5ac958..3d3166bb 100644 --- a/kmix/viewswitches.cpp +++ b/kmix/viewswitches.cpp @@ -31,8 +31,8 @@ #include "mdwenum.h" #include "mixer.h" -ViewSwitches::ViewSwitches(TQWidget* tqparent, const char* name, const TQString & caption, Mixer* mixer, ViewBase::ViewFlags vflags) - : ViewBase(tqparent, name, caption, mixer, 0, vflags) +ViewSwitches::ViewSwitches(TQWidget* parent, const char* name, const TQString & caption, Mixer* mixer, ViewBase::ViewFlags vflags) + : ViewBase(parent, name, caption, mixer, 0, vflags) { // Create switch buttonGroup if ( _vflags & ViewBase::Vertical ) { @@ -93,7 +93,7 @@ TQWidget* ViewSwitches::add(MixDevice *md) _mixer, // the mixer for this device md, // MixDevice (parameter) orientation, // Qt::Orientation - this, // tqparent + this, // parent this, // View widget md->name().latin1() ); @@ -108,7 +108,7 @@ TQWidget* ViewSwitches::add(MixDevice *md) md, // MixDevice (parameter) false, // Small orientation, // Qt::Orientation - this, // tqparent + this, // parent this, // View widget md->name().latin1() ); |