change isDeleting to isUnsetting

- DocumentObject::isDeleting was changed to isRemoving.
  This commit just prevents future confusion.
This commit is contained in:
WandererFan
2017-09-17 11:50:52 -04:00
committed by Yorik van Havre
parent 4b3ab9e74e
commit 4b8d04f528
8 changed files with 19 additions and 32 deletions

View File

@@ -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