]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/font.h
set m_encoding in wxCSConv ctor from name
[wxWidgets.git] / include / wx / cocoa / font.h
index 477c3e0b9ee2011cc28dfbdd583dbeb751455cd0..c0743e44412354fd637f27d4a3f25cae408f3753 100644 (file)
@@ -95,13 +95,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,
@@ -111,15 +105,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);
     }
 
@@ -137,9 +127,6 @@ public:
 
     virtual ~wxFont();
 
-    // assignment
-    wxFont& operator=(const wxFont& font);
-
     // implement base class pure virtuals
     virtual int GetPointSize() const;
     virtual int GetFamily() const;
@@ -164,9 +151,6 @@ public:
     virtual bool RealizeResource();
 
 protected:
-    // common part of all ctors
-    void Init();
-
     void Unshare();
 
 private: