From 8bbb3f407cccdf0783c49025825a0f0b9ebe3480 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Thu, 14 Sep 2017 21:06:39 -0300 Subject: About project implemented --- Project/BusForm.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Project/BusForm.cpp') diff --git a/Project/BusForm.cpp b/Project/BusForm.cpp index 113dd24..436357e 100644 --- a/Project/BusForm.cpp +++ b/Project/BusForm.cpp @@ -3,6 +3,11 @@ BusForm::BusForm(wxWindow* parent, Bus* bus) : BusFormBase(parent) { + m_choiceFaultType->SetString(0, _("Three-phase")); + m_choiceFaultType->SetString(1, _("Line-to-line")); + m_choiceFaultType->SetString(2, _("Double line-to-ground")); + m_choiceFaultType->SetString(3, _("Line-to-ground")); + SetSize(GetBestSize()); m_parent = parent; -- cgit