From da0a6b013bc904f772161daa7e8aa3b653437454 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 9 Aug 2004 06:58:30 +0000 Subject: [PATCH] aa const git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28716 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/classic/font.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mac/classic/font.cpp b/src/mac/classic/font.cpp index ef0ecc73b6..06e7fa1ca3 100644 --- a/src/mac/classic/font.cpp +++ b/src/mac/classic/font.cpp @@ -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; } -- 2.45.2