summaryrefslogtreecommitdiffstats
path: root/Project/SwitchingForm.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-01-18 17:16:30 -0200
committerGitHub <noreply@github.com>2017-01-18 17:16:30 -0200
commit69131a727782090ffd7cb467f449e8f26d3d2949 (patch)
treec5c60bad223bd8e3c97252b31ab8ed2b5e3e2a25 /Project/SwitchingForm.h
parent58148f1ebe5be64231965ca76ae13e4690528e55 (diff)
parent46115e4326fc679fe6f1f2c32164b95420e689eb (diff)
downloadPSP.git-69131a727782090ffd7cb467f449e8f26d3d2949.tar.gz
PSP.git-69131a727782090ffd7cb467f449e8f26d3d2949.tar.xz
PSP.git-69131a727782090ffd7cb467f449e8f26d3d2949.zip
Merge pull request #25 from Thales1330/bugfix/data-100117
Bugfix data 100117
Diffstat (limited to 'Project/SwitchingForm.h')
-rw-r--r--Project/SwitchingForm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Project/SwitchingForm.h b/Project/SwitchingForm.h
index 5a4aa51..cf39701 100644
--- a/Project/SwitchingForm.h
+++ b/Project/SwitchingForm.h
@@ -3,13 +3,13 @@
#include "ElementForm.h"
-class Element;
+class PowerElement;
class SwitchingForm : public SwitchingFormBase
{
public:
SwitchingForm(wxWindow* parent);
- SwitchingForm(wxWindow* parent, Element* element);
+ SwitchingForm(wxWindow* parent, PowerElement* element);
virtual ~SwitchingForm();
protected:
virtual void OnDownButtonClick(wxCommandEvent& event);
@@ -23,6 +23,6 @@ protected:
int m_maxID = 0;
- Element* m_element = NULL;
+ PowerElement* m_element = NULL;
};
#endif // SWITCHINGFORM_H