X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5267aefd85739afd26bd19bfba998005119db446..54173563c3ff0c79a33dd1bc33a13d74fec15df1:/interface/wx/richtext/richtextsymboldlg.h diff --git a/interface/wx/richtext/richtextsymboldlg.h b/interface/wx/richtext/richtextsymboldlg.h index c3e5740751..89a94884f7 100644 --- a/interface/wx/richtext/richtextsymboldlg.h +++ b/interface/wx/richtext/richtextsymboldlg.h @@ -3,7 +3,7 @@ // Purpose: interface of wxSymbolPickerDialog // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -42,14 +42,14 @@ ctrl-GetStyle(ctrl->GetInsertionPoint(), attr); wxString currentFontName; - if (attr.HasFont() && attr.GetFont().Ok()) + if (attr.HasFont() && attr.GetFont().IsOk()) currentFontName = attr.GetFont().GetFaceName(); // Don't set the initial font in the dialog (so the user is choosing // 'normal text', i.e. the current font) but do tell the dialog // what 'normal text' is. - wxSymbolPickerDialog dlg(wxT("*"), wxEmptyString, currentFontName, this); + wxSymbolPickerDialog dlg("*", wxEmptyString, currentFontName, this); if (dlg.ShowModal() == wxID_OK) {