]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/font.h
removed Robert Fendt as packager (at his request)
[wxWidgets.git] / include / wx / msw / font.h
index 13674e03c55d0cb79d0e6951b4ce08d13afadf8e..22708e45ae0288323718fc6f4df8b2f786109d82 100644 (file)
@@ -25,13 +25,13 @@ class WXDLLEXPORT wxFont : public wxFontBase
 public:
     // ctors and such
     wxFont() { Init(); }
-    wxFont(const wxFont& font) { Init(); Ref(font); }
+    wxFont(const wxFont& font) : wxFontBase(font) { Init(); Ref(font); }
 
     wxFont(int size,
            int family,
            int style,
            int weight,
-           bool underlined = FALSE,
+           bool underlined = false,
            const wxString& face = wxEmptyString,
            wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
     {
@@ -53,7 +53,7 @@ public:
                 int family,
                 int style,
                 int weight,
-                bool underlined = FALSE,
+                bool underlined = false,
                 const wxString& face = wxEmptyString,
                 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
 
@@ -90,7 +90,7 @@ public:
     virtual bool IsFree() const;
     virtual bool RealizeResource();
     virtual WXHANDLE GetResourceHandle() const;
-    virtual bool FreeResource(bool force = FALSE);
+    virtual bool FreeResource(bool force = false);
 
     // for consistency with other wxMSW classes
     WXHFONT GetHFONT() const;