]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove the ctor and Init methods that are not available on all ports
authorRobin Dunn <robin@alldunn.com>
Tue, 11 Oct 2011 05:33:31 +0000 (05:33 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 11 Oct 2011 05:33:31 +0000 (05:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/fontutil.h

index 1bb6d5f5c83f67a22aca2533fb5c4918c3c43743..9f3fade1ec4485dad9818eda2d2fde4b5ebbacb2 100644 (file)
@@ -24,27 +24,11 @@ class wxNativeFontInfo
 public:
     wxNativeFontInfo();
     wxNativeFontInfo(const wxNativeFontInfo& info);
-    wxNativeFontInfo( int size,
-                      wxFontFamily family,
-                      wxFontStyle style,
-                      wxFontWeight weight,
-                      bool underlined,
-                      const wxString& faceName,
-                      wxFontEncoding encoding);
     ~wxNativeFontInfo();
 
     wxNativeFontInfo& operator=(const wxNativeFontInfo& info);
 
     void Init();
-    void Init(const wxNativeFontInfo& info);
-    void Init(int size,
-                  wxFontFamily family,
-                  wxFontStyle style,
-                  wxFontWeight weight,
-                  bool underlined,
-                  const wxString& faceName ,
-                  wxFontEncoding encoding);
-
     void InitFromFont(const wxFont& font);
     
     int GetPointSize() const;