]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/fontenum.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / fontenum.h
index 99327a7311d14fe53fb971627d3147d51ba9fec0..ba5cfa8cf29e5524556b94ae921ac81d32bbd160 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        fontenum.h
 // Purpose:     interface of wxFontEnumerator
 // Author:      wxWidgets team
 // Name:        fontenum.h
 // Purpose:     interface of wxFontEnumerator
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
 /////////////////////////////////////////////////////////////////////////////
 
 /**
 class wxFontEnumerator
 {
 public:
 class wxFontEnumerator
 {
 public:
+    wxFontEnumerator();
+    virtual ~wxFontEnumerator();
+
     /**
         Call OnFontEncoding() for each encoding supported by the given font -
         or for each encoding supported by at least some font if @a font is not specified.
     */
     /**
         Call OnFontEncoding() for each encoding supported by the given font -
         or for each encoding supported by at least some font if @a font is not specified.
     */
-    virtual bool EnumerateEncodings(const wxString& font = "");
+    virtual bool EnumerateEncodings(const wxString& font = wxEmptyString);
 
     /**
         Call OnFacename() for each font which supports given encoding (only if
 
     /**
         Call OnFacename() for each font which supports given encoding (only if
@@ -56,7 +58,7 @@ public:
         Return array of strings containing all encodings found by
         EnumerateEncodings().
     */
         Return array of strings containing all encodings found by
         EnumerateEncodings().
     */
-    static wxArrayString GetEncodings(const wxString& facename = "");
+    static wxArrayString GetEncodings(const wxString& facename = wxEmptyString);
 
     /**
         Return array of strings containing all facenames found by
 
     /**
         Return array of strings containing all facenames found by