From 9846e52ed96e3b81ff9bee2f41c4940cbcd276a4 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 1 Sep 2015 13:49:01 +0200 Subject: [PATCH] + fix flaws in class PropertyVectorDistance --- src/App/PropertyGeo.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/App/PropertyGeo.h b/src/App/PropertyGeo.h index c82650afa..e97c7e8a9 100644 --- a/src/App/PropertyGeo.h +++ b/src/App/PropertyGeo.h @@ -117,24 +117,9 @@ public: */ virtual ~PropertyVectorDistance(); - /** Sets the property - */ - void setValue(const Base::Vector3d &vec); - void setValue(double x, double y, double z); - - /** This method returns a string representation of the property - */ - const Base::Vector3d &getValue(void) const; const char* getEditorName(void) const { return "Gui::PropertyEditor::PropertyVectorDistanceItem"; } - - virtual unsigned int getMemSize (void) const { - return sizeof(Base::Vector3d); - } - -private: - Base::Vector3d _cVec; };