summaryrefslogtreecommitdiff
path: root/src/gui/widgets/layouthelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/layouthelper.h')
-rw-r--r--src/gui/widgets/layouthelper.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/widgets/layouthelper.h b/src/gui/widgets/layouthelper.h
index b0f4d435d..c9c5e2471 100644
--- a/src/gui/widgets/layouthelper.h
+++ b/src/gui/widgets/layouthelper.h
@@ -38,7 +38,7 @@ class LayoutHelper : public gcn::WidgetListener
/**
* Constructor.
*/
- LayoutHelper(gcn::Container *container);
+ LayoutHelper(gcn::Container *const container);
/**
* Destructor.
@@ -65,12 +65,13 @@ class LayoutHelper : public gcn::WidgetListener
/**
* Adds a widget to the container and sets it at given cell.
*/
- LayoutCell &place(int x, int y, gcn::Widget *, int w = 1, int h = 1);
+ LayoutCell &place(const int x, const int y, gcn::Widget *const wg,
+ const int w = 1, const int h = 1);
/**
* Returns a proxy for adding widgets in an inner table of the layout.
*/
- ContainerPlacer getPlacer(int x, int y);
+ ContainerPlacer getPlacer(const int x, const int y);
/**
* Called whenever the managed container changes size.