]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/font.cpp
g++ 4/wxMAC_USE_CORE_GRAPHICS warning fixes
[wxWidgets.git] / src / mac / classic / font.cpp
index 3ea4bcb82e42c38e5f7a98a44f241c0c2ab2475c..d38a241ea06ca2df0cd98fe5ff8d18cb77b96814 100644 (file)
@@ -6,13 +6,9 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "font.h"
-#endif
-
 #include "wx/defs.h"
 #include "wx/string.h"
 #include "wx/font.h"
@@ -25,9 +21,7 @@
 #include "wx/mac/private.h"
 #include <ATSUnicode.h>
 
-#if !USE_SHARED_LIBRARIES
 IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)
-#endif
 
 class WXDLLEXPORT wxFontRefData: public wxGDIRefData
 {
@@ -95,7 +89,7 @@ public:
 
     virtual ~wxFontRefData();
     void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
-    bool GetNoAntiAliasing() { return m_noAA; }
+    bool GetNoAntiAliasing() const { return m_noAA; }
     
 protected:
     // common part of all ctors
@@ -410,7 +404,7 @@ wxFontEncoding wxFont::GetEncoding() const
     return M_FONTDATA->m_encoding;
 }
 
-bool wxFont::GetNoAntiAliasing()
+bool wxFont::GetNoAntiAliasing() const
 {
     return M_FONTDATA->m_noAA;
 }