fixes 0003771: Memory leak in Part.Face.Surface

This commit is contained in:
wmayer
2019-01-23 22:38:51 +01:00
parent 86d8372056
commit 2aee1e8368
5 changed files with 98 additions and 35 deletions

View File

@@ -201,7 +201,8 @@ class BaseExport PyObjectBase : public PyObject
enum Status {
Valid = 0,
Immutable = 1,
Notify = 2
Notify = 2,
NoTrack = 3
};
protected:
@@ -313,6 +314,14 @@ public:
void startNotify();
void setNotTracking(bool on=true) {
StatusBits.set(NoTrack, on);
}
bool isNotTracking() const {
return StatusBits.test(NoTrack);
}
typedef void* PointerType;
private: