Fix for arg to wxFopen

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2005-02-13 12:53:09 +00:00
parent 1721a8c028
commit 17d64ebc98

View File

@ -158,7 +158,7 @@ bool wxXMetaFile::ReadFile(const wxChar *file)
{
HandleTableSize = 0;
FILE *handle = wxFopen(wxFNCONV(file), wxT("rb"));
FILE *handle = wxFopen(file, wxT("rb"));
if (!handle) return false;
// Read placeable metafile header, if any