From 8a09e38c386ce1cd545dae86720a9a9d9f0cc3b1 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 30 Mar 2008 20:38:51 +0000 Subject: [PATCH] removed obsolete SIGNAL/SLOT-connection git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@819 0778d3d1-df1d-0410-868b-ea421aaaa00d --- ChangeLog | 14 ++++++++++---- src/core/song_editor.cpp | 3 --- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 83c4040d7..9a4dc9e35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,17 @@ 2008-03-30 Tobias Doerffel + * src/core/song_editor.cpp: + removed obsolete SIGNAL/SLOT-connection + * include/effect_chain.h: + * plugins/bass_booster/bass_booster.cpp: * plugins/ladspa_effect/ladspa_effect.cpp: - - made controls have a track to allow automation of LADSPA-controls - - compare out_sum against getGate()+0.0001f as getGate() might be 0 - while out_sum in many cases never will reach 0,0...0 again - fixes - high CPU-usage even after stop playing + compare out_sum against getGate()+0.0001f as getGate() might be 0 + while out_sum in many cases never will reach 0,0...0 again - fixes + high CPU-usage even after stop playing + + * plugins/ladspa_effect/ladspa_effect.cpp: + made controls have a track to allow automation of LADSPA-controls * include/automatable_button.h: * src/widgets/automatable_button.cpp: diff --git a/src/core/song_editor.cpp b/src/core/song_editor.cpp index 02c7bc9ba..de293bd25 100644 --- a/src/core/song_editor.cpp +++ b/src/core/song_editor.cpp @@ -138,9 +138,6 @@ songEditor::songEditor( song * _song ) : engine::getMainWindow()->addSpacingToToolBar( 10 ); - connect( engine::getMixer(), SIGNAL( sampleRateChanged() ), this, - SLOT( updateFramesPerTact64th() ) ); - QLabel * master_vol_lbl = new QLabel( tb );