diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-27 20:38:55 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-27 20:38:55 -0300 |
commit | 50f31898499d1d1e1ebc8ab9c9c26d3b4ec1b3c1 (patch) | |
tree | f4a509a9e20d6ece771a718638b9f31a2a268ef8 /Project/ElementPlotData.cpp | |
parent | ee58faacaaaf83293ead87696847b018f9a1281d (diff) | |
download | PSP.git-50f31898499d1d1e1ebc8ab9c9c26d3b4ec1b3c1.tar.gz PSP.git-50f31898499d1d1e1ebc8ab9c9c26d3b4ec1b3c1.tar.xz PSP.git-50f31898499d1d1e1ebc8ab9c9c26d3b4ec1b3c1.zip |
More methods implemented
buggy
Diffstat (limited to 'Project/ElementPlotData.cpp')
-rw-r--r-- | Project/ElementPlotData.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project/ElementPlotData.cpp b/Project/ElementPlotData.cpp index 6639802..0f406a8 100644 --- a/Project/ElementPlotData.cpp +++ b/Project/ElementPlotData.cpp @@ -1,9 +1,9 @@ #include "ElementPlotData.h" -ElementPlotData::ElementPlotData(wxString name, CurveType type) +ElementPlotData::ElementPlotData(wxString name, CurveType curveType) { m_name = name; - m_curveType = type; + m_curveType = curveType; } ElementPlotData::~ElementPlotData() {} |