From: Vadim Zeitlin Date: Mon, 28 Feb 2005 10:53:55 +0000 (+0000) Subject: compilation fix for non-debug build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/284be59b1028da651c7136d90025283d22877678?hp=e661674164c3c461445dcf982138577868895fc1 compilation fix for non-debug build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 46ce327c19..17664f0fba 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -452,7 +452,8 @@ void wxFileName::Assign(const wxString& fullpathOrig, _T("the path shouldn't contain file name nor extension") ); #else // !__WXDEBUG__ - SplitPath(fullname, NULL /* no path */, &name, &ext, &hasExt, format); + SplitPath(fullname, NULL /* no volume */, NULL /* no path */, + &name, &ext, &hasExt, format); SplitPath(fullpath, &volume, &path, NULL, NULL, format); #endif // __WXDEBUG__/!__WXDEBUG__