From 7b155f111daf5d7ae477b16d0f0789b1113bea74 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 6 Jun 2012 00:04:33 +0300 Subject: Fix some issues after auto checking. --- src/guichan/cliprectangle.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/guichan/cliprectangle.cpp') diff --git a/src/guichan/cliprectangle.cpp b/src/guichan/cliprectangle.cpp index 42b33f203..e05736870 100644 --- a/src/guichan/cliprectangle.cpp +++ b/src/guichan/cliprectangle.cpp @@ -52,25 +52,25 @@ namespace gcn { - ClipRectangle::ClipRectangle() + ClipRectangle::ClipRectangle() : + xOffset(0), + yOffset(0) { x = 0; y = 0; width = 0; height = 0; - xOffset = 0; - yOffset = 0; } ClipRectangle::ClipRectangle(int x0, int y0, int width0, int height0, - int xOffset0, int yOffset0) + int xOffset0, int yOffset0) : + xOffset(xOffset0), + yOffset(yOffset0) { x = x0; y = y0; width = width0; height = height0; - xOffset = xOffset0; - yOffset = yOffset0; } const ClipRectangle& ClipRectangle::operator=(const Rectangle& other) -- cgit v1.2.3-60-g2f50