[TD]allow section line when base is section

This commit is contained in:
wandererfan
2023-02-01 14:56:28 -05:00
committed by WandererFan
parent 693ec401f7
commit d9afb06676
2 changed files with 2 additions and 12 deletions

View File

@@ -138,11 +138,3 @@ void QGIViewSection::updateView(bool update)
draw();
QGIView::updateView(update);
}
void QGIViewSection::drawSectionLine(TechDraw::DrawViewSection* s, bool b)
{
Q_UNUSED(b);
Q_UNUSED(s);
//override QGIVP::drawSectionLine
}

View File

@@ -39,10 +39,8 @@ public:
void draw() override;
void updateView(bool update = false) override;
enum {Type = QGraphicsItem::UserType + 108};
int type() const override { return Type;}
void drawSectionLine(TechDraw::DrawViewSection* s, bool b) override;
enum { Type = QGraphicsItem::UserType + 108 };
int type() const override { return Type; }
protected:
void drawSectionFace();