change isDeleting to isUnsetting
- DocumentObject::isDeleting was changed to isRemoving. This commit just prevents future confusion.
This commit is contained in:
committed by
Yorik van Havre
parent
4b3ab9e74e
commit
4b8d04f528
@@ -150,7 +150,7 @@ public:
|
||||
}
|
||||
//return PyObject as DrawViewPartPy
|
||||
virtual PyObject *getPyObject(void);
|
||||
bool isDeleting(void) { return nowDeleting; }
|
||||
bool isUnsetting(void) { return nowUnsetting; }
|
||||
|
||||
gp_Pln getProjPlane(void) const;
|
||||
virtual std::vector<TopoDS_Wire> getWireForFace(int idx) const;
|
||||
@@ -178,7 +178,7 @@ protected:
|
||||
bool m_handleFaces;
|
||||
|
||||
private:
|
||||
bool nowDeleting;
|
||||
bool nowUnsetting;
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user