+void wxStaticText::DoSetSize(int x, int y, int w, int h, int sizeFlags)
+{
+ // we need to refresh the window after changing its size as the standard
+ // control doesn't always update itself properly
+ wxStaticTextBase::DoSetSize(x, y, w, h, sizeFlags);
+
+ Refresh();
+}
+