diff options
Diffstat (limited to 'Project/Sum.cpp')
-rw-r--r-- | Project/Sum.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project/Sum.cpp b/Project/Sum.cpp index d814bbe..606b367 100644 --- a/Project/Sum.cpp +++ b/Project/Sum.cpp @@ -1,8 +1,8 @@ #include "Sum.h" #include "SumForm.h" -Sum::Sum() - : ControlElement() +Sum::Sum(int id) + : ControlElement(id) { m_width = m_height = 36.0; Node* nodeIn1 = new Node(m_position + wxPoint2DDouble(-m_width / 2, 9 - m_height / 2), Node::NODE_IN, m_borderSize); |