diff options
Diffstat (limited to 'src/guichan/rectangle.cpp')
-rw-r--r-- | src/guichan/rectangle.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/guichan/rectangle.cpp b/src/guichan/rectangle.cpp index 0a6ed2908..eb87bff50 100644 --- a/src/guichan/rectangle.cpp +++ b/src/guichan/rectangle.cpp @@ -60,8 +60,9 @@ namespace gcn { } - Rectangle::Rectangle(int x_, int y_, int width_, int height_) - : x(x_), + Rectangle::Rectangle(const int x_, const int y_, + const int width_, const int height_) : + x(x_), y(y_), width(width_), height(height_) |