diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-21 11:50:24 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-24 18:25:52 +0900 |
| commit | f353dc99d02df0ebd3d23ee05cfdb98b64e64ae4 (patch) | |
| tree | 991cd3edc99b0a2e08f6226443833cdb8b69bca8 /arts/tools/fftscopeview.cpp | |
| parent | da49daf5e172336e697c47c702521231d5001001 (diff) | |
| download | tdemultimedia-f353dc99d02df0ebd3d23ee05cfdb98b64e64ae4.tar.gz tdemultimedia-f353dc99d02df0ebd3d23ee05cfdb98b64e64ae4.zip | |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit dd6db75d8ab2821740e4ce6c66c9de91252138ea)
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() ); |
