]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/richtext/richtextsymboldlg.h
undo the last change as it results in buildbot configuration error
[wxWidgets.git] / interface / wx / richtext / richtextsymboldlg.h
index c3e574075169d506ed203be4207ec4fd3b0dbdfa..3e1778910c125071be6a149a75ea6263cd30c1a4 100644 (file)
         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)
         {