forked from qt-creator/qt-creator
SCXMLEditor: Fix uninitialized m_maxWidth
Change-Id: If1988179931c8ed14d79b6ff9a6257a576c1deee Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -55,7 +55,7 @@ private:
|
|||||||
QPointF m_movePoint;
|
QPointF m_movePoint;
|
||||||
QPointF m_startPos;
|
QPointF m_startPos;
|
||||||
TextItem *m_textItem;
|
TextItem *m_textItem;
|
||||||
qreal m_maxWidth;
|
qreal m_maxWidth = -1.0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace PluginInterface
|
} // namespace PluginInterface
|
||||||
|
Reference in New Issue
Block a user