diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-18 14:11:20 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-18 14:11:20 -0200 |
commit | 44a7475053ea042bfca9cd31998ddb5b16910688 (patch) | |
tree | 2e65d9cb4ec58c707bd3788f0483b0077fab5e56 /Project/SwitchingForm.h | |
parent | 3e44c208f67b87f17e086bb1361f4422fb6ac5ce (diff) | |
download | PSP.git-44a7475053ea042bfca9cd31998ddb5b16910688.tar.gz PSP.git-44a7475053ea042bfca9cd31998ddb5b16910688.tar.xz PSP.git-44a7475053ea042bfca9cd31998ddb5b16910688.zip |
Power elements methods migrated to correct class
Diffstat (limited to 'Project/SwitchingForm.h')
-rw-r--r-- | Project/SwitchingForm.h | 6 |
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 |