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.cpp | |
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.cpp')
-rw-r--r-- | Project/SwitchingForm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project/SwitchingForm.cpp b/Project/SwitchingForm.cpp index 2a48783..061b0a5 100644 --- a/Project/SwitchingForm.cpp +++ b/Project/SwitchingForm.cpp @@ -1,5 +1,5 @@ #include "SwitchingForm.h" -#include "Element.h" +#include "PowerElement.h" SwitchingForm::SwitchingForm(wxWindow* parent) : SwitchingFormBase(parent) { @@ -10,7 +10,7 @@ SwitchingForm::SwitchingForm(wxWindow* parent) : SwitchingFormBase(parent) Layout(); } -SwitchingForm::SwitchingForm(wxWindow* parent, Element* element) : SwitchingFormBase(parent) +SwitchingForm::SwitchingForm(wxWindow* parent, PowerElement* element) : SwitchingFormBase(parent) { m_listCtrlSwitchings->AppendColumn(_("Type")); m_listCtrlSwitchings->AppendColumn(_("Time (s)")); |