projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
rename some projects to avoid project name clashes in samples.dsw
[wxWidgets.git]
/
src
/
unix
/
fontutil.cpp
diff --git
a/src/unix/fontutil.cpp
b/src/unix/fontutil.cpp
index c3cc7702e5210201296cbfa2ea5ac39f3ee0546e..3d09eb207c4edd6e9eca00d556b0976104b19669 100644
(file)
--- a/
src/unix/fontutil.cpp
+++ b/
src/unix/fontutil.cpp
@@
-44,10
+44,15
@@
#include "pango/pango.h"
#ifdef __WXGTK20__
#include "pango/pango.h"
#ifdef __WXGTK20__
-#include "wx/gtk/private.h"
-extern GtkWidget *wxGetRootWindow();
+ #include "wx/gtk/private.h"
+ extern GtkWidget *wxGetRootWindow();
+
+ #define wxPANGO_CONV wxGTK_CONV_SYS
#else
#else
-#include "wx/x11/private.h"
+ #include "wx/x11/private.h"
+ #include "wx/gtk/private/string.h"
+
+ #define wxPANGO_CONV(s) (wxConvUTF8.cWX2MB((s)))
#endif
// ----------------------------------------------------------------------------
#endif
// ----------------------------------------------------------------------------
@@
-263,7
+268,7
@@
void wxNativeFontInfo::SetUnderlined(bool WXUNUSED(underlined))
bool wxNativeFontInfo::SetFaceName(const wxString& facename)
{
bool wxNativeFontInfo::SetFaceName(const wxString& facename)
{
- pango_font_description_set_family(description, wx
GTK_CONV_SYS
(facename));
+ pango_font_description_set_family(description, wx
PANGO_CONV
(facename));
return true;
}
return true;
}
@@
-309,7
+314,7
@@
bool wxNativeFontInfo::FromString(const wxString& s)
}
}
}
}
- description = pango_font_description_from_string(
wxGTK_CONV_SYS( str )
);
+ description = pango_font_description_from_string(
wxPANGO_CONV(str)
);
// ensure a valid facename is selected
if (!wxFontEnumerator::IsValidFacename(GetFaceName()))
// ensure a valid facename is selected
if (!wxFontEnumerator::IsValidFacename(GetFaceName()))