X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/937013e0fd914d4c42f9f5ec98da665986b93dfa..4cd4a9ff70cdfdfc054747d7dae6101da3f94c03:/src/gtk/fontdlg.cpp diff --git a/src/gtk/fontdlg.cpp b/src/gtk/fontdlg.cpp index 50f971d756..83b7c23ff1 100644 --- a/src/gtk/fontdlg.cpp +++ b/src/gtk/fontdlg.cpp @@ -98,6 +98,7 @@ bool wxFontDialog::DoCreate(wxWindow *parent) wxString m_message( _("Choose font") ); m_widget = gtk_font_selection_dialog_new( wxGTK_CONV( m_message ) ); + g_object_ref(m_widget); if (parent) gtk_window_set_transient_for(GTK_WINDOW(m_widget), @@ -128,7 +129,7 @@ bool wxFontDialog::DoCreate(wxWindow *parent) else { // this is not supposed to happen! - wxFAIL_MSG(_T("font is ok but no native font info?")); + wxFAIL_MSG(wxT("font is ok but no native font info?")); } } @@ -141,7 +142,7 @@ wxFontDialog::~wxFontDialog() void wxFontDialog::SetChosenFont(const char *fontname) { - m_fontData.SetChosenFont(wxFont( wxString::FromAscii(fontname) )); + m_fontData.SetChosenFont(wxFont( wxString::FromUTF8(fontname) )); } #endif // wxUSE_FONTDLG && !__WXGPE__