]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/font.h
fixed typo in last commit
[wxWidgets.git] / include / wx / mac / carbon / font.h
index c28ed650b7ab2c42cae7f890e497bc93ad88fbec..f513354e3545b43a03066b7efee561ed6674e4b6 100644 (file)
@@ -20,13 +20,7 @@ class WXDLLEXPORT wxFont : public wxFontBase
 {
 public:
     // ctors and such
-    wxFont() { Init(); }
-    wxFont(const wxFont& font)
-        : wxFontBase()
-    {
-        Init();
-        Ref(font);
-    }
+    wxFont() { }
 
     wxFont(int size,
            int family,
@@ -36,15 +30,11 @@ public:
            const wxString& face = wxEmptyString,
            wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
     {
-        Init();
-
         (void)Create(size, family, style, weight, underlined, face, encoding);
     }
 
     wxFont(const wxNativeFontInfo& info)
     {
-        Init();
-
         (void)Create(info);
     }
 
@@ -64,9 +54,6 @@ public:
     
     virtual ~wxFont();
 
-    // assignment
-    wxFont& operator=(const wxFont& font);
-
     // implement base class pure virtuals
     virtual int GetPointSize() const;
     virtual int GetFamily() const;
@@ -111,9 +98,6 @@ public:
     void* MacGetATSUStyle() const ; 
     
 protected:
-    // common part of all ctors
-    void Init();
-
     void Unshare();
 
 private: