projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
put constant in define
[wxWidgets.git]
/
src
/
common
/
fmapbase.cpp
diff --git
a/src/common/fmapbase.cpp
b/src/common/fmapbase.cpp
index 48e1b2e148bc9a5a4953d00371b4a505a6faa668..15b742ba229707e6dc29f5bff79f53a85669298a 100644
(file)
--- a/
src/common/fmapbase.cpp
+++ b/
src/common/fmapbase.cpp
@@
-31,6
+31,7
@@
#include "wx/log.h"
#include "wx/intl.h"
#include "wx/module.h"
#include "wx/log.h"
#include "wx/intl.h"
#include "wx/module.h"
+ #include "wx/wxcrtvararg.h"
#endif //WX_PRECOMP
#if defined(__WXMSW__)
#endif //WX_PRECOMP
#if defined(__WXMSW__)
@@
-336,10
+337,15
@@
void wxFontMapperBase::Reset()
// config usage customisation
// ----------------------------------------------------------------------------
// config usage customisation
// ----------------------------------------------------------------------------
+
+static wxString gs_defaultConfigPath(FONTMAPPER_ROOT_PATH);
+
/* static */
/* static */
-const wx
Char *
wxFontMapperBase::GetDefaultConfigPath()
+const wx
String&
wxFontMapperBase::GetDefaultConfigPath()
{
{
- return FONTMAPPER_ROOT_PATH;
+ // NB: we return const wxString& and not wxString for compatibility
+ // with 2.8 that returned const wxChar*
+ return gs_defaultConfigPath;
}
void wxFontMapperBase::SetConfigPath(const wxString& prefix)
}
void wxFontMapperBase::SetConfigPath(const wxString& prefix)