diff options
Diffstat (limited to 'arts/modules/common/effectrackslot_impl.cc')
-rw-r--r-- | arts/modules/common/effectrackslot_impl.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arts/modules/common/effectrackslot_impl.cc b/arts/modules/common/effectrackslot_impl.cc index 359c40a3..8e7e48e8 100644 --- a/arts/modules/common/effectrackslot_impl.cc +++ b/arts/modules/common/effectrackslot_impl.cc @@ -42,23 +42,23 @@ class EffectRackSlot_impl : virtual public EffectRackSlot_skel { } - void constructor( Widget tqparent, Widget effect, EffectRackItemGui effectrackgui ) + void constructor( Widget parent, Widget effect, EffectRackItemGui effectrackgui ) { _effectrackgui = effectrackgui; - _hbox.tqparent( tqparent ); + _hbox.parent( parent ); _hbox.margin( 0 ); _hbox.spacing( 0 ); _hbox.framestyle( Sunken | Panel ); _hbox.linewidth( 1 ); _hbox.show(); - _buttonbox.tqparent( _hbox ); + _buttonbox.parent( _hbox ); _buttonbox.margin( 0 ); _buttonbox.spacing( 0 ); _buttonbox.show(); - _removeButton.tqparent( _buttonbox ); + _removeButton.parent( _buttonbox ); _removeButton.text( "x" ); _removeButton.hSizePolicy( spFixed ); _removeButton.width( 20 ); @@ -66,7 +66,7 @@ class EffectRackSlot_impl : virtual public EffectRackSlot_skel connect( _removeButton, "clicked_changed", self(), "removeslot" ); _removeButton.show(); - _masterButton.tqparent( _buttonbox ); + _masterButton.parent( _buttonbox ); _masterButton.text( "MM" ); _masterButton.toggle( true ); _masterButton.hSizePolicy( spFixed ); @@ -75,7 +75,7 @@ class EffectRackSlot_impl : virtual public EffectRackSlot_skel connect( _masterButton, "pressed_changed", self(), "tomaster" ); _masterButton.show(); - _frame.tqparent( _hbox ); + _frame.parent( _hbox ); _frame.margin( 5 ); _frame.spacing( 0 ); _frame.framestyle( Raised | Panel ); @@ -85,10 +85,10 @@ class EffectRackSlot_impl : virtual public EffectRackSlot_skel _frame.show(); _effect = effect; - _effect.tqparent( _frame ); + _effect.parent( _frame ); _effect.show(); - _spacer.tqparent( _frame ); + _spacer.parent( _frame ); _spacer.hSizePolicy( spExpanding ); _spacer.show(); } |