wxSize sizeReal = AdjustSize(size);
- m_statbox = new wxStaticBox(parent, id, T(""), pos, sizeReal, style, name);
+ m_statbox = new wxStaticBox(parent, id, wxT(""), pos, sizeReal, style, name);
return TRUE;
}
{
return m_statbox->GetMainWidget();
}
+
+void wxStaticLine::DoSetSize(int x, int y, int width, int height, int sizeFlags)
+{
+ m_statbox->SetSize(x, y, width, height, sizeFlags);
+}
+
+void wxStaticLine::DoMoveWindow(int x, int y, int width, int height)
+{
+ m_statbox->SetSize(x, y, width, height);
+}