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

@@ -46,10 +46,8 @@
using namespace TechDrawGui;
QGIProjGroup::QGIProjGroup(const QPoint &pos, QGraphicsScene *scene)
:QGIViewCollection(pos, scene)
QGIProjGroup::QGIProjGroup()
{
setPos(pos);
origin = new QGraphicsItemGroup();
origin->setParentItem(this);
@@ -64,10 +62,6 @@ QGIProjGroup::QGIProjGroup(const QPoint &pos, QGraphicsScene *scene)
borderVisible = false;
}
QGIProjGroup::~QGIProjGroup()
{
//TODO: if the QGIVO is deleted, should we clean up any remaining QGIVParts??
}
TechDraw::DrawProjGroup * QGIProjGroup::getDrawView(void) const
{