Improved some string initialization and zeroing.

Assigning = "" in constructor does not make sense,
.clear() is better than = "",
default paramaeter = {} is cheaper than = ""
This commit is contained in:
Vojtech Bubnik
2021-11-19 15:34:22 +01:00
parent 535c61c1d9
commit 946023c553
4 changed files with 8 additions and 8 deletions

View File

@@ -786,8 +786,8 @@ void PlaterPresetComboBox::update()
std::map<wxString, wxBitmap*> nonsys_presets;
wxString selected_user_preset = "";
wxString tooltip = "";
wxString selected_user_preset;
wxString tooltip;
const std::deque<Preset>& presets = m_collection->get_presets();
if (!presets.front().is_visible)