Fix compilation of QML Designer.

Breakage introduced by bb13b8d65e .

Change-Id: Ib3b13167f5ada0e406275cb4ff4dddfedc222345
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Friedemann Kleint
2013-04-08 15:53:57 +02:00
committed by Marco Bubke
parent e5556f5b5b
commit aba13e37bc

View File

@@ -164,7 +164,9 @@ ResizeController::~ResizeController()
ResizeController &ResizeController::operator =(const ResizeController &other) ResizeController &ResizeController::operator =(const ResizeController &other)
{ {
if (this != &other)
m_data = other.m_data; m_data = other.m_data;
return *this;
} }