summaryrefslogtreecommitdiff
path: root/Widgets/Size.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-21 02:10:45 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-21 02:10:45 +0100
commitec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8 (patch)
tree797d0ec90846ece3c658d55f1507585c85d0b91f /Widgets/Size.h
parent89040cdc99d56e0a1a80b972db18d231c155ace0 (diff)
downloadserenity-ec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8.zip
Yet another pass of style fixes.
Diffstat (limited to 'Widgets/Size.h')
-rw-r--r--Widgets/Size.h2
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; }