1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-28 15:38:48 +01:00

Scanned for bad naked new; found none; changed comments, used safenew

This commit is contained in:
Paul Licameli
2017-07-22 23:54:56 -04:00
parent 7156479d11
commit f0de38dec1
22 changed files with 32 additions and 32 deletions

View File

@@ -314,12 +314,12 @@ Meter::Meter(AudacityProject *project,
{
if(mIsInput)
{
//mIcon = new wxBitmap(MicMenuNarrow_xpm);
//mIcon = NEW wxBitmap(MicMenuNarrow_xpm);
mIcon = std::make_unique<wxBitmap>(wxBitmap(theTheme.Bitmap(bmpMic)));
}
else
{
//mIcon = new wxBitmap(SpeakerMenuNarrow_xpm);
//mIcon = NEW wxBitmap(SpeakerMenuNarrow_xpm);
mIcon = std::make_unique<wxBitmap>(wxBitmap(theTheme.Bitmap(bmpSpeaker)));
}
}