+void wxStaticText::DoSetSize(
+ int nX
+, int nY
+, int nWidth
+, int nHeight
+, int nSizeFlags
+)
+{
+ //
+ // We need to refresh the window after changing its size as the standard
+ // control doesn't always update itself properly.
+ //
+ wxStaticTextBase::DoSetSize( nX
+ ,nY
+ ,nWidth
+ ,nHeight
+ ,nSizeFlags
+ );
+ Refresh();
+} // end of wxStaticText::DoSetSize
+