Commit ab806efc authored by Erwan Tulou's avatar Erwan Tulou

skins2: fix wrong FromLocale()

file is already utf8 encoded, since it is a string that comes from
the theme.xml description file, and therefore it is expected to be utf8.
parent 58eb9328
...@@ -1259,7 +1259,7 @@ string Builder::getFilePath( const string &rFileName ) const ...@@ -1259,7 +1259,7 @@ string Builder::getFilePath( const string &rFileName ) const
file.replace( pos, 1, sep ); file.replace( pos, 1, sep );
#endif #endif
string full_path = m_path + sep + sFromLocale( file ); string full_path = m_path + sep + file;
// check that the file exists // check that the file exists
struct stat stat; struct stat stat;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment