diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/CheckBox.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/CheckBox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/CheckBox.cpp b/Userland/Libraries/LibGUI/CheckBox.cpp index 207df1f0c0..7afb815efb 100644 --- a/Userland/Libraries/LibGUI/CheckBox.cpp +++ b/Userland/Libraries/LibGUI/CheckBox.cpp @@ -16,9 +16,9 @@ REGISTER_WIDGET(GUI, CheckBox) namespace GUI { -static const int s_box_width = 13; -static const int s_box_height = 13; -static const int s_horizontal_padding = 6; +static constexpr int s_box_width = 13; +static constexpr int s_box_height = 13; +static constexpr int s_horizontal_padding = 6; CheckBox::CheckBox(String text) : AbstractButton(move(text)) |