From 44a7475053ea042bfca9cd31998ddb5b16910688 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Wed, 18 Jan 2017 14:11:20 -0200 Subject: Power elements methods migrated to correct class --- Project/SwitchingForm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Project/SwitchingForm.h') 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 -- cgit