From: Václav Slavík <vslavik@fastmail.fm>
Date: Sun, 28 Mar 2010 17:52:19 +0000 (+0000)
Subject: Fix UTF-8 string storage in constant: use unsigned char.
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b37dacdca619250993178bb44b3178d73720cb6c

Fix UTF-8 string storage in constant: use unsigned char.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/tests/filesys/filesystest.cpp b/tests/filesys/filesystest.cpp
index 613e241c2f..141d570408 100644
--- a/tests/filesys/filesystest.cpp
+++ b/tests/filesys/filesystest.cpp
@@ -125,13 +125,13 @@ void FileSystemTestCase::FileNameToUrlConversion()
 
 void FileSystemTestCase::UnicodeFileNameToUrlConversion()
 {
-    const char filename_utf8[] = {
+    const unsigned char filename_utf8[] = {
               0x4b, 0x72, 0xc3, 0xa1, 0x73, 0x79, 0x50, 0xc5,
               0x99, 0xc3, 0xad, 0x72, 0x6f, 0x64, 0x79, 0x2e,
               0x6a, 0x70, 0x67, 0x00
               // KrásyPřírody.jpg
         };
-    wxFileName filename(wxString::FromUTF8(filename_utf8));
+    wxFileName filename(wxString::FromUTF8((const char*)filename_utf8));
 
     wxString url = wxFileSystem::FileNameToURL(filename);