From f5c0e65719f98d39eec74b2171013363d584e159 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 5 Mar 2002 00:18:28 +0000 Subject: [PATCH] fixed compilation for wxUSE_UNICODE=1, wxUSE_UNICODE_MSLU=0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14447 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filefn.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index c990c980ed..997c0ca6ae 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1408,6 +1408,8 @@ wxChar *wxGetWorkingDirectory(wxChar *buf, int sz) #ifdef HAVE_WGETCWD #if wxUSE_UNICODE_MSLU if ( wxGetOsVersion() != wxWIN95 ) + #else + char *cbuf = NULL; // never really used because needsANSI will always be FALSE #endif { ok = _wgetcwd(buf, sz) != NULL; -- 2.50.0