]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontmap.cpp
added XRC handler for wxStdDialogButtonSizer
[wxWidgets.git] / src / common / fontmap.cpp
index be6bf5703f7adacf24eb80d328ae7b309d3c9f4b..be05e44b854c3eee3d1601312623b71ff3751b88 100644 (file)
@@ -163,6 +163,19 @@ wxFontMapper::~wxFontMapper()
 {
 }
 
+bool wxFontMapper::IsWxFontMapper()
+{   return true; }
+
+/* static */
+wxFontMapper *wxFontMapper::Get()
+{
+    wxFontMapperBase *fontmapper = wxFontMapperBase::Get();
+    wxASSERT_MSG(fontmapper->IsWxFontMapper(), wxT("GUI code requested a wxFontMapper but we only have a wxFontMapperBase."));
+    // Now return it anyway because there's a chance the GUI code might just
+    // only want to call wxFontMapperBase functions.
+    return (wxFontMapper*)fontmapper;
+}
+
 wxFontEncoding
 wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive)
 {