use utf8_str() in wxDFB
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b04edcaf5f
commit
26f03c44d0
@ -17,17 +17,6 @@
|
|||||||
#include "wx/dfb/wrapdfb.h"
|
#include "wx/dfb/wrapdfb.h"
|
||||||
#include <directfb_version.h>
|
#include <directfb_version.h>
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
// strings conversion
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// convert string from wxString to UTF-8 encoded const char*
|
|
||||||
#if wxUSE_UNICODE
|
|
||||||
#define wxSTR_TO_DFB(s) (s).mb_str(wxConvUTF8)
|
|
||||||
#else
|
|
||||||
#define wxSTR_TO_DFB(s) wxConvUTF8.cWC2MB((s).wc_str(*wxConvUI))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// misc helpers
|
// misc helpers
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
@ -338,7 +338,7 @@ void wxDC::DoDrawText(const wxString& text, wxCoord x, wxCoord y)
|
|||||||
wxCHECK_RET( m_textForegroundColour.Ok(),
|
wxCHECK_RET( m_textForegroundColour.Ok(),
|
||||||
wxT("invalid foreground color") );
|
wxT("invalid foreground color") );
|
||||||
SelectColour(m_textForegroundColour);
|
SelectColour(m_textForegroundColour);
|
||||||
m_surface->DrawString(wxSTR_TO_DFB(text), -1, xx, yy, DSTF_LEFT | DSTF_TOP);
|
m_surface->DrawString(text.utf8_str(), -1, xx, yy, DSTF_LEFT | DSTF_TOP);
|
||||||
|
|
||||||
// restore pen's colour, because other drawing functions expect the colour
|
// restore pen's colour, because other drawing functions expect the colour
|
||||||
// to be set to the pen:
|
// to be set to the pen:
|
||||||
@ -497,7 +497,7 @@ void wxDC::DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y,
|
|||||||
DFBRectangle rect;
|
DFBRectangle rect;
|
||||||
wxIDirectFBFontPtr f = GetCurrentFont();
|
wxIDirectFBFontPtr f = GetCurrentFont();
|
||||||
|
|
||||||
if ( f->GetStringExtents(wxSTR_TO_DFB(string), -1, &rect, NULL) )
|
if ( f->GetStringExtents(string.utf8_str(), -1, &rect, NULL) )
|
||||||
{
|
{
|
||||||
// VS: YDEV is corrent, it should *not* be XDEV, because font's are
|
// VS: YDEV is corrent, it should *not* be XDEV, because font's are
|
||||||
// only scaled according to m_scaleY
|
// only scaled according to m_scaleY
|
||||||
|
Loading…
Reference in New Issue
Block a user