Skip to content

Commit 5b29bcc

Browse files
committed
Fix #112
1 parent 252cd6b commit 5b29bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cegui/CEGUIUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ QString stringToQString(const CEGUI::String& str)
2424

2525
CEGUI::String qStringToString(const QString& str)
2626
{
27-
return CEGUI::String(str.toLocal8Bit().data());
27+
return CEGUI::String(str.toUtf8().data());
2828
}
2929

3030
// Returns a valid CEGUI widget name out of the supplied name, if possible. Returns empty string if

0 commit comments

Comments
 (0)