diff options
author | Michele Calgaro <[email protected]> | 2023-12-21 11:50:24 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-21 13:53:30 +0900 |
commit | dd6db75d8ab2821740e4ce6c66c9de91252138ea (patch) | |
tree | c6da20736a04cc0986aba211dbfe6e9ad188b6d8 /arts/tools/fftscopeview.cpp | |
parent | 8729e642eaa3629412ef948e590e35ade2cbb0ea (diff) | |
download | tdemultimedia-dd6db75d8ab2821740e4ce6c66c9de91252138ea.tar.gz tdemultimedia-dd6db75d8ab2821740e4ce6c66c9de91252138ea.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'arts/tools/fftscopeview.cpp')
-rw-r--r-- | arts/tools/fftscopeview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arts/tools/fftscopeview.cpp b/arts/tools/fftscopeview.cpp index 35805877..6307fa71 100644 --- a/arts/tools/fftscopeview.cpp +++ b/arts/tools/fftscopeview.cpp @@ -80,11 +80,11 @@ kdDebug()<<k_funcinfo<<endl; connect( updatetimer,TQT_SIGNAL( timeout() ),this,TQT_SLOT( updateScope() ) ); _artsactions = new ArtsActions( 0, 0, this ); - _moreBars = ArtsActions::actionMoreBars( TQT_TQOBJECT(this), TQT_SLOT( moreBars() ), 0 ); - _lessBars = ArtsActions::actionLessBars( TQT_TQOBJECT(this), TQT_SLOT( lessBars() ), 0 ); + _moreBars = ArtsActions::actionMoreBars( this, TQT_SLOT( moreBars() ), 0 ); + _lessBars = ArtsActions::actionLessBars( this, TQT_SLOT( lessBars() ), 0 ); _menu = new TDEPopupMenu( 0 ); _moreBars->plug( _menu ); _lessBars->plug( _menu ); - _substyle = new TDEAction( i18n( "Substyle" ), "", TDEShortcut(), TQT_TQOBJECT(this), TQT_SLOT( substyle() ), TQT_TQOBJECT(this) ); + _substyle = new TDEAction( i18n( "Substyle" ), "", TDEShortcut(), this, TQT_SLOT( substyle() ), this ); _substyle->plug( _menu ); _menu->insertItem( i18n("VU-Style"), _artsactions->stylemenu() ); |