]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/richtext/richtextsymboldlg.h
Gave proper spacing to header include sections.
[wxWidgets.git] / interface / wx / richtext / richtextsymboldlg.h
index c3e574075169d506ed203be4207ec4fd3b0dbdfa..89a94884f7456e809f7cc87a7a74647ca3c7a1b9 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxSymbolPickerDialog
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
         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)
         {