diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-21 02:10:45 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-21 02:10:45 +0100 |
commit | ec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8 (patch) | |
tree | 797d0ec90846ece3c658d55f1507585c85d0b91f /Widgets/Size.h | |
parent | 89040cdc99d56e0a1a80b972db18d231c155ace0 (diff) | |
download | serenity-ec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8.zip |
Yet another pass of style fixes.
Diffstat (limited to 'Widgets/Size.h')
-rw-r--r-- | Widgets/Size.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Widgets/Size.h b/Widgets/Size.h index a50e7b3086..9a86829639 100644 --- a/Widgets/Size.h +++ b/Widgets/Size.h @@ -5,7 +5,7 @@ public: Size() { } Size(int w, int h) : m_width(w), m_height(h) { } - bool isEmpty() const { return !m_width || !m_height; } + bool is_empty() const { return !m_width || !m_height; } int width() const { return m_width; } int height() const { return m_height; } |