1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-17 16:50:26 +02:00

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.

This commit is contained in:
v.audacity 2013-05-03 22:33:10 +00:00
parent 3fb574f5ca
commit 3b1707d379

View File

@ -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();
}