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
@@ -49,7 +49,7 @@ public:
|
||||
int addView(DrawView *view);
|
||||
int removeView(DrawView *view);
|
||||
void rebuildViewList(void);
|
||||
bool isDeleting(void) { return nowDeleting; }
|
||||
bool isUnsetting(void) { return nowUnsetting; }
|
||||
|
||||
int countChildren();
|
||||
|
||||
@@ -65,7 +65,7 @@ public:
|
||||
|
||||
protected:
|
||||
void onChanged(const App::Property* prop);
|
||||
bool nowDeleting;
|
||||
bool nowUnsetting;
|
||||
};
|
||||
|
||||
} //namespace TechDraw
|
||||
|
||||
Reference in New Issue
Block a user