- m_statbox = new wxStaticBox(parent, id, _T(""), pos, sizeReal, style, name);
+ m_statbox = new wxStaticBox(parent, id, wxEmptyString, pos, sizeReal, style, name);
+
+ return true;
+}
+
+wxStaticLine::~wxStaticLine()
+{
+ delete m_statbox;
+}
+
+WXWidget wxStaticLine::GetMainWidget() const
+{
+ return m_statbox->GetMainWidget();
+}