git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43569
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
public:
wxFontBundle(const font_info_t *fontInfo);
public:
wxFontBundle(const font_info_t *fontInfo);
- virtual wxString GetName() const
- { return wxString::FromAscii(m_fontInfo->familyName); }
-
- virtual bool IsFixed() const { return m_fontInfo->isFixed; }
+ virtual wxString GetName() const;
+ virtual bool IsFixed() const;
const font_info_t *GetInfo() const { return m_fontInfo; }
const font_info_t *GetInfo() const { return m_fontInfo; }
info->boldFace, info->boldItalicFace);
}
info->boldFace, info->boldItalicFace);
}
+wxString wxFontBundle::GetName() const
+{
+ return wxString::FromAscii(m_fontInfo->familyName);
+}
+
+bool wxFontBundle::IsFixed() const
+{
+ return m_fontInfo->isFixed;
+}
+
+
// ----------------------------------------------------------------------------
// wxFontsManager
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// wxFontsManager
// ----------------------------------------------------------------------------