]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for link error
authorJulian Smart <julian@anthemion.co.uk>
Sat, 26 Mar 2005 08:34:51 +0000 (08:34 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 26 Mar 2005 08:34:51 +0000 (08:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/fontmap.h
src/common/fontmap.cpp

index 2dee4a244b4a00675725db764009d349f6477a6a..d8149fab21863a2dd9d3f821ef4cad9ad6c5d1e8 100644 (file)
@@ -60,14 +60,8 @@ public:
     virtual ~wxFontMapperBase();
 
     // return instance of the wxFontMapper singleton
-#if wxUSE_GUI
-    // GUI code needs to know it's a wxFontMapper because there
-    // are additional methods in the subclass.
-    static wxFontMapper *Get();
-#else
     // wxBase code only cares that it's a wxFontMapperBase
     static wxFontMapperBase *Get();
-#endif
 
     // set the singleton to 'mapper' instance and return previous one
     static wxFontMapper *Set(wxFontMapper *mapper);
@@ -235,6 +229,9 @@ public:
     // the title for the dialogs (note that default is quite reasonable)
     void SetDialogTitle(const wxString& title) { m_titleDialog = title; }
 
+    // GUI code needs to know it's a wxFontMapper because there
+    // are additional methods in the subclass.
+    static wxFontMapper *Get();
 
 protected:
     // GetAltForEncoding() helper: tests for the existence of the given
index be6bf5703f7adacf24eb80d328ae7b309d3c9f4b..87b28c7bd244b972de657748b0773c14683f144d 100644 (file)
@@ -163,6 +163,16 @@ wxFontMapper::~wxFontMapper()
 {
 }
 
+/* static */
+// Declared as returning wxFontMapper when wxUSE_GUI=1.  Unfortunately, it's
+// only implemented in wxBase library.  Note that if the last resort
+// is taken and GUI code tries to treat it as a real wxFontMapper
+// then you'd be in trouble.
+wxFontMapper *wxFontMapper::Get()
+{
+    return (wxFontMapper*)wxFontMapperBase::Get();
+}
+
 wxFontEncoding
 wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive)
 {