Remove initializations which are the default value

This commit is contained in:
Paul Cornett
2019-02-25 10:49:04 -08:00
parent 7c3ce912e0
commit 1e753f97ba
10 changed files with 3 additions and 25 deletions

View File

@@ -714,7 +714,7 @@ void BitmapComboBoxWidgetsPage::LoadWidgetImages( wxArrayString* strings, wxImag
wxBitmap bmp(image);
wxASSERT( bmp.IsOk() );
#else
wxBitmap bmp(wxNullBitmap);
wxBitmap bmp;
#endif
images->Add(bmp);
(*strings)[i] = name;