]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix for non-debug build
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 28 Feb 2005 10:53:55 +0000 (10:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 28 Feb 2005 10:53:55 +0000 (10:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filename.cpp

index 46ce327c19c6ccc23d1607e9a00733cdd40d46b0..17664f0fbab0a5e82318028d084c97bd1bdb4ed1 100644 (file)
@@ -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__