1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 15:23:48 +01:00

remove unnecessary qualified names

This commit is contained in:
Paul Licameli
2017-10-25 19:30:00 -04:00
parent d49ac8bad3
commit dabf5c0e39
2 changed files with 4 additions and 4 deletions

View File

@@ -528,7 +528,7 @@ void SelectionBar::OnUpdate(wxCommandEvent &evt)
RegenerateTooltips();
// ToolBar::ReCreateButtons() will get rid of our sizers and controls
// ReCreateButtons() will get rid of our sizers and controls
// so reset pointers first.
for( i=0;i<5;i++)
*Ctrls[i]=NULL;
@@ -536,7 +536,7 @@ void SelectionBar::OnUpdate(wxCommandEvent &evt)
mRateBox = NULL;
mRateText = NULL;
ToolBar::ReCreateButtons();
ReCreateButtons();
ValuesToControls();

View File

@@ -406,12 +406,12 @@ void SpectralSelectionBar::OnUpdate(wxCommandEvent &evt)
mListener->SSBL_SetBandwidthSelectionFormatName(bandwidthFormatName);
}
// ToolBar::ReCreateButtons() will get rid of our sizers and controls
// ReCreateButtons() will get rid of our sizers and controls
// so reset pointers first.
mCenterCtrl = mWidthCtrl = NULL;
mLowCtrl = mHighCtrl = NULL;
ToolBar::ReCreateButtons();
ReCreateButtons();
ValuesToControls();