From 4f03ec887be1a5f5ba3b431d780d98c1ad4557af Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 27 Jan 2008 16:25:33 +0000 Subject: [PATCH] converting temporary wxString to const wxChar* and storing that doesn't work (and doesn't even compile if wxUSE_STL), fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/filename/filenametest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/filename/filenametest.cpp b/tests/filename/filenametest.cpp index 4a1d46d547..4145a2217e 100644 --- a/tests/filename/filenametest.cpp +++ b/tests/filename/filenametest.cpp @@ -288,9 +288,9 @@ void FileNameTestCase::TestNormalize() static struct FileNameTest { - const wxChar *original; + const wxString original; int flags; - const wxChar *expected; + const wxString expected; } tests[] = { // test wxPATH_NORM_ENV_VARS -- 2.47.2