+bool wxStaticText::SetFont(const wxFont& font)
+{
+ bool ret = wxControl::SetFont(font);
+
+ if ( ret )
+ {
+ if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
+ {
+ InvalidateBestSize();
+ SetSize( GetBestSize() );
+ }
+ }
+
+ return ret;
+}
+
+#endif //if wxUSE_STATTEXT
+