| Index: Source/core/platform/graphics/FloatRect.h
|
| diff --git a/Source/core/platform/graphics/FloatRect.h b/Source/core/platform/graphics/FloatRect.h
|
| index fc17a27f23c199ccf56e2a9dba698d892d0f983e..40bea2b11a7c122f370985b603d80437bf4839b4 100644
|
| --- a/Source/core/platform/graphics/FloatRect.h
|
| +++ b/Source/core/platform/graphics/FloatRect.h
|
| @@ -89,7 +89,7 @@ public:
|
|
|
| FloatPoint center() const { return FloatPoint(x() + width() / 2, y() + height() / 2); }
|
|
|
| - void move(const FloatSize& delta) { m_location += delta; }
|
| + void move(const FloatSize& delta) { m_location += delta; }
|
| void moveBy(const FloatPoint& delta) { m_location.move(delta.x(), delta.y()); }
|
| void move(float dx, float dy) { m_location.move(dx, dy); }
|
|
|
|
|