What's that semicolon?!?

This commit is contained in:
Joseph Lenox 2018-06-14 11:41:12 -05:00
parent 04f5dbe419
commit f0adf1c7ab

View File

@ -9,11 +9,11 @@ void Settings::Settings() {
if (the_os == OS::Mac) _small_font.SetPointSize(11); if (the_os == OS::Mac) _small_font.SetPointSize(11);
_small_bold_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); _small_bold_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
if (the_os == OS::Mac) _small_bold_font.SetPointSize(11); if (the_os == OS::Mac) _small_bold_font.SetPointSize(11);
_small_bold_font.MakeBold() _small_bold_font.MakeBold();
_medium_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); _medium_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
_medium_font.SetPointSize(12); _medium_font.SetPointSize(12);
_scroll_step = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)->GetPointSize(); _scroll_step = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT).GetPointSize();
} }
void Settings::save_settings() { void Settings::save_settings() {
/* /*