summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/widgets/checkbox.cpp2
-rw-r--r--src/gui/widgets/checkbox.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp
index 52230a6d0..e21e50c53 100644
--- a/src/gui/widgets/checkbox.cpp
+++ b/src/gui/widgets/checkbox.cpp
@@ -92,7 +92,7 @@ CheckBox::~CheckBox()
}
}
-void CheckBox::draw(gcn::Graphics* graphics)
+void CheckBox::draw(gcn::Graphics *const graphics)
{
BLOCK_START("CheckBox::draw")
drawBox(graphics);
diff --git a/src/gui/widgets/checkbox.h b/src/gui/widgets/checkbox.h
index d470ac425..22316730a 100644
--- a/src/gui/widgets/checkbox.h
+++ b/src/gui/widgets/checkbox.h
@@ -44,7 +44,7 @@ class CheckBox final : public gcn::CheckBox,
* Constructor.
*/
CheckBox(const Widget2 *const widget,
- const std::string &caption, bool selected = false,
+ const std::string &caption, const bool selected = false,
gcn::ActionListener *const listener = nullptr,
const std::string &eventId = "");
@@ -68,7 +68,7 @@ class CheckBox final : public gcn::CheckBox,
/**
* Draws the check box, not the caption.
*/
- void drawBox(gcn::Graphics* graphics);
+ void drawBox(gcn::Graphics *const graphics);
/**
* Called when the mouse enteres the widget area.