always return (owned or non-owned, depending on build) wxScopedCharBuffer from utf8_str() and ToUTF8()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1700,7 +1700,7 @@ void wxGtkPrinterDCImpl::DoDrawRotatedText(const wxString& text, wxCoord x, wxCo
|
||||
|
||||
bool underlined = m_font.Ok() && m_font.GetUnderlined();
|
||||
|
||||
const wxUTF8Buf data = text.utf8_str();
|
||||
const wxScopedCharBuffer data = text.utf8_str();
|
||||
|
||||
size_t datalen = strlen(data);
|
||||
pango_layout_set_text( m_layout, data, datalen);
|
||||
@@ -2102,7 +2102,7 @@ void wxGtkPrinterDCImpl::DoGetTextExtent(const wxString& string, wxCoord *width,
|
||||
cairo_scale(m_cairo, m_scaleX, m_scaleY);
|
||||
|
||||
// Set layout's text
|
||||
const wxUTF8Buf dataUTF8 = string.utf8_str();
|
||||
const wxScopedCharBuffer dataUTF8 = string.utf8_str();
|
||||
|
||||
gint oldSize=0;
|
||||
if ( theFont )
|
||||
|
Reference in New Issue
Block a user