git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28716
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
virtual ~wxFontRefData();
void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
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
protected:
// common part of all ctors
return M_FONTDATA->m_encoding;
}
return M_FONTDATA->m_encoding;
}
-bool wxFont::GetNoAntiAliasing()
+bool wxFont::GetNoAntiAliasing() const
{
return M_FONTDATA->m_noAA;
}
{
return M_FONTDATA->m_noAA;
}