]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/font.cpp
Hopefully fixed library names generated by wx-config for OS/2's PM port.
[wxWidgets.git] / src / mac / classic / font.cpp
index 3ea4bcb82e42c38e5f7a98a44f241c0c2ab2475c..06e7fa1ca3ce55c6eb73c5af219dc15983210fa1 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
@@ -95,7 +95,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 +410,7 @@ wxFontEncoding wxFont::GetEncoding() const
     return M_FONTDATA->m_encoding;
 }
 
-bool wxFont::GetNoAntiAliasing()
+bool wxFont::GetNoAntiAliasing() const
 {
     return M_FONTDATA->m_noAA;
 }