Remove unconnected signals
This commit is contained in:
parent
de76cd6b53
commit
bda5c6233c
|
@ -71,10 +71,7 @@ public:
|
|||
App::PropertyFloat LineWidth;
|
||||
App::PropertyFloat HiddenWidth;
|
||||
App::PropertyFloatConstraint Tolerance;
|
||||
// App::PropertyLinkList HatchAreas; //DrawHatch
|
||||
|
||||
//int addHatch(App::DocumentObject *docObj);
|
||||
//int removeHatch(App::DocumentObject *docObj);
|
||||
|
||||
std::vector<TechDraw::DrawHatch*> getHatches(void) const;
|
||||
|
||||
//TODO: are there use-cases for Python access to TechDrawGeometry???
|
||||
|
|
|
@ -52,9 +52,6 @@ public:
|
|||
void draw();
|
||||
virtual void updateView(bool update = false);
|
||||
|
||||
Q_SIGNALS:
|
||||
void dirty();
|
||||
|
||||
protected:
|
||||
TechDraw::DrawParametricTemplate * getParametricTemplate();
|
||||
|
||||
|
|
|
@ -55,9 +55,6 @@ public:
|
|||
void draw();
|
||||
virtual void updateView(bool update = false);
|
||||
|
||||
Q_SIGNALS:
|
||||
void dirty();
|
||||
|
||||
protected:
|
||||
void openFile(const QFile &file);
|
||||
void load (const QString & fileName);
|
||||
|
|
|
@ -226,7 +226,6 @@ void QGIViewDimension::setViewPartFeature(TechDraw::DrawViewDimension *obj)
|
|||
|
||||
updateDim();
|
||||
draw();
|
||||
Q_EMIT dirty();
|
||||
}
|
||||
|
||||
void QGIViewDimension::select(bool state)
|
||||
|
@ -268,8 +267,6 @@ void QGIViewDimension::updateView(bool update)
|
|||
}
|
||||
|
||||
draw();
|
||||
|
||||
Q_EMIT dirty();
|
||||
}
|
||||
|
||||
void QGIViewDimension::updateDim()
|
||||
|
|
|
@ -98,9 +98,6 @@ public:
|
|||
virtual void updateView(bool update = false);
|
||||
virtual void paint(QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget = 0 );
|
||||
|
||||
Q_SIGNALS:
|
||||
void dirty();
|
||||
|
||||
public Q_SLOTS:
|
||||
void datumLabelDragged(void);
|
||||
void datumLabelDragFinished(void);
|
||||
|
|
|
@ -40,9 +40,6 @@ public:
|
|||
enum {Type = QGraphicsItem::UserType + 108};
|
||||
int type() const override { return Type;}
|
||||
|
||||
Q_SIGNALS:
|
||||
void dirty();
|
||||
|
||||
protected:
|
||||
void drawSectionFace();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user