Cleanup: indentation of public/protected/private keywords

This commit is contained in:
Twan van Laarhoven
2020-05-12 21:57:37 +02:00
parent 86aec577a2
commit 0c3712b61a
167 changed files with 751 additions and 752 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ enum FontFlags
/// A font for rendering text
/** Contains additional information about scaling, color and shadow */
class Font : public IntrusivePtrBase<Font> {
public:
public:
Scriptable<String> name; ///< Name of the font
Scriptable<String> italic_name; ///< Font name for italic text (optional)
Scriptable<double> size; ///< Size of the font
@@ -65,7 +65,7 @@ class Font : public IntrusivePtrBase<Font> {
/// Convert this font to a wxFont
wxFont toWxFont(double scale) const;
private:
private:
DECLARE_REFLECTION();
};