| Index: ui/gfx/quad_f.cc
|
| diff --git a/ui/gfx/quad_f.cc b/ui/gfx/quad_f.cc
|
| index 0ef7c5814c75418eb2a9d45b6daa08f475d0a3ec..0ca501f345d964b2a23a7b7b10b88555672c9120 100644
|
| --- a/ui/gfx/quad_f.cc
|
| +++ b/ui/gfx/quad_f.cc
|
| @@ -131,10 +131,10 @@ RectF QuadF::BoundingBox() const {
|
| }
|
|
|
| void QuadF::Scale(float x_scale, float y_scale) {
|
| - p1_ = p1_.Scale(x_scale, y_scale);
|
| - p2_ = p2_.Scale(x_scale, y_scale);
|
| - p3_ = p3_.Scale(x_scale, y_scale);
|
| - p4_ = p4_.Scale(x_scale, y_scale);
|
| + p1_.Scale(x_scale, y_scale);
|
| + p2_.Scale(x_scale, y_scale);
|
| + p3_.Scale(x_scale, y_scale);
|
| + p4_.Scale(x_scale, y_scale);
|
| }
|
|
|
| void QuadF::operator+=(const Vector2dF& rhs) {
|
|
|