From 17d64ebc984b4792473934bddde37eef1708b1a9 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 13 Feb 2005 12:53:09 +0000 Subject: [PATCH] Fix for arg to wxFopen git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/ogl/mfutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/ogl/mfutils.cpp b/contrib/src/ogl/mfutils.cpp index e5fbccd33a..ce580697f5 100644 --- a/contrib/src/ogl/mfutils.cpp +++ b/contrib/src/ogl/mfutils.cpp @@ -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