summaryrefslogtreecommitdiff
path: root/wx+/font_size.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/font_size.h')
-rw-r--r--wx+/font_size.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/font_size.h b/wx+/font_size.h
index 2f2d377c..d25dfede 100644
--- a/wx+/font_size.h
+++ b/wx+/font_size.h
@@ -35,7 +35,7 @@ void setRelativeFontSize(wxWindow& control, double factor)
wxFont font = control.GetFont();
font.SetPointSize(numeric::round(wxNORMAL_FONT->GetPointSize() * factor));
control.SetFont(font);
-};
+}
inline
@@ -46,7 +46,7 @@ void setMainInstructionFont(wxWindow& control)
font.SetWeight(wxFONTWEIGHT_BOLD);
control.SetFont(font);
-};
+}
}
#endif //FONT_SIZE_H_23849632846734343234532
bgstack15