From 3b1707d379594819b8fbe1e01c11f13349a5eff2 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Fri, 3 May 2013 22:33:10 +0000 Subject: [PATCH] With the change Richard just made to pass the actual title to the parent class constructor, the call to SetTitle() is unnecessary in this method. Removed it. --- src/effects/Reverb.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/effects/Reverb.cpp b/src/effects/Reverb.cpp index 1309fd60f..03555ab48 100644 --- a/src/effects/Reverb.cpp +++ b/src/effects/Reverb.cpp @@ -305,7 +305,6 @@ ReverbDialogue::ReverbDialogue(EffectReverb * effect, wxWindow * parent): EffectDialog(parent, _("Reverb"), PROCESS_EFFECT, wxDEFAULT_DIALOG_STYLE, ePreviewDryButton), mEffect(*effect), mParams(effect->mParams) { - SetTitle(); Init(); }