Remove ctor args from QGIView and descendents.

This commit is contained in:
Ian Rees
2016-06-06 19:13:38 +12:00
committed by wmayer
parent 4fe9267eeb
commit b883434318
21 changed files with 63 additions and 82 deletions

View File

@@ -43,10 +43,9 @@
using namespace TechDrawGui;
QGIViewCollection::QGIViewCollection(const QPoint &pos, QGraphicsScene *scene) :QGIView(pos, scene)
QGIViewCollection::QGIViewCollection()
{
setFlags(QGraphicsItem::ItemIsSelectable);
setPos(pos);
setHandlesChildEvents(false);
@@ -55,10 +54,6 @@ QGIViewCollection::QGIViewCollection(const QPoint &pos, QGraphicsScene *scene) :
setFlag(QGraphicsItem::ItemIsMovable, true);
}
QGIViewCollection::~QGIViewCollection()
{
}
QVariant QGIViewCollection::itemChange(GraphicsItemChange change, const QVariant &value)
{