summaryrefslogtreecommitdiffstats
path: root/Project/Multiplier.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-03-30 11:10:06 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-03-30 11:10:06 -0300
commit045037ce8f2b106acbe5425245746a2dbed65c26 (patch)
treef81b4003f1ec6f835681c768c945065b1976da42 /Project/Multiplier.h
parent3985018cdb8508b9970646ae4b9886ba4df6dd78 (diff)
downloadPSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.tar.gz
PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.tar.xz
PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.zip
Exponencial under implementation
Diffstat (limited to 'Project/Multiplier.h')
-rw-r--r--Project/Multiplier.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Project/Multiplier.h b/Project/Multiplier.h
index 50dc38c..bce2694 100644
--- a/Project/Multiplier.h
+++ b/Project/Multiplier.h
@@ -12,9 +12,9 @@ class Multiplier : public ControlElement
virtual void Draw(wxPoint2DDouble translation, double scale) const;
virtual bool Contains(wxPoint2DDouble position) const { return m_rect.Contains(position); }
virtual bool Intersects(wxRect2DDouble rect) const { return m_rect.Intersects(rect); }
- virtual bool ShowForm(wxWindow* parent, Element* element);
+ virtual bool ShowForm(wxWindow* parent, Element* element) { return false; }
virtual void Rotate(bool clockwise = true);
-
+
virtual void UpdatePoints();
};