summaryrefslogtreecommitdiffstats
path: root/Project/ControlElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/ControlElement.h')
-rw-r--r--Project/ControlElement.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Project/ControlElement.h b/Project/ControlElement.h
index 9414d38..063b2a5 100644
--- a/Project/ControlElement.h
+++ b/Project/ControlElement.h
@@ -14,7 +14,7 @@ public:
wxRect2DDouble GetRect() const { return m_rect; }
void SetRect(wxRect2DDouble rect) { m_rect = rect; }
- wxPoint2DDouble GetPosition() const { return m_rect.GetPosition(); }
+ wxPoint2DDouble GetPosition() const;
void SetPosition(wxPoint2DDouble position);
NodeType GetNodeType() const { return m_nodeType; }
@@ -36,7 +36,6 @@ protected:
double m_radius = 3.0;
std::vector<wxPoint2DDouble> m_triPts;
- std::vector<wxPoint2DDouble> m_triPtsMovePos;
};
class ControlElement : public Element