Avoid an assert in wxFrame::SetTitle
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28431 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1735,7 +1735,14 @@ void wxMacControl::GetBestRect( Rect *r )
|
|||||||
|
|
||||||
void wxMacControl::SetTitle( const wxString &title )
|
void wxMacControl::SetTitle( const wxString &title )
|
||||||
{
|
{
|
||||||
UMASetControlTitle( m_controlRef , title , m_font.GetEncoding() ) ;
|
wxFontEncoding encoding;
|
||||||
|
|
||||||
|
if ( m_font.Ok() )
|
||||||
|
encoding = m_font.GetEncoding();
|
||||||
|
else
|
||||||
|
encoding = wxFont::GetDefaultEncoding();
|
||||||
|
|
||||||
|
UMASetControlTitle( m_controlRef , title , encoding ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxMacControl::GetFeatures( UInt32 * features )
|
void wxMacControl::GetFeatures( UInt32 * features )
|
||||||
|
Reference in New Issue
Block a user