From ab97539a1dd76c516ab51ac32ee75261b492e917 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 13 May 2018 21:30:04 -0500 Subject: [PATCH] gcc please don't treat that as an initializer list. :( --- src/GUI/Dialogs/AboutDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/Dialogs/AboutDialog.cpp b/src/GUI/Dialogs/AboutDialog.cpp index fb6d2798e..84211d62d 100644 --- a/src/GUI/Dialogs/AboutDialog.cpp +++ b/src/GUI/Dialogs/AboutDialog.cpp @@ -87,7 +87,7 @@ void AboutDialogLogo::repaint(wxPaintEvent& event) dc.SetBackgroundMode(wxPENSTYLE_TRANSPARENT); - const wxSize size {this->GetSize()}; + const wxSize size = this->GetSize() ; const auto logo_w {this->logo.GetWidth()}; const auto logo_h {this->logo.GetHeight()};