From d9d7ae101ddd024c39829d2de88abf3d95476a19 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 29 Mar 2009 12:01:32 +0000 Subject: [PATCH] fix Unicode build after last change (closes #10649) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@59909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index a7abfeed86..12f498a982 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -2143,7 +2143,7 @@ void wxFileName::SplitPath(const wxString& fullpath, wxString wxFileName::StripExtension(const wxString& fullpath) { wxFileName fn(fullpath); - fn.SetExt(""); + fn.SetExt(_T("")); return fn.GetFullPath(); }