]> git.saurik.com Git - wxWidgets.git/commitdiff
omitting assert that makes no sense for OpenVMS
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Wed, 28 Oct 2009 12:05:18 +0000 (12:05 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Wed, 28 Oct 2009 12:05:18 +0000 (12:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filename.cpp

index 9142e61c23053c8b3d986a89fbc9b2dd93b6b321..2a8092dfed49e667033e69b81e7bc14f17c1b21f 100644 (file)
@@ -486,9 +486,11 @@ void wxFileName::Assign(const wxString& fullpathOrig,
 
     SplitPath(fullpath, &volume, &path, &nameDummy, &extDummy, format);
 
-    wxASSERT_MSG( nameDummy.empty() && extDummy.empty(),
+#ifndef __VMS
+   // This test makes no sense on an OpenVMS system.
+   wxASSERT_MSG( nameDummy.empty() && extDummy.empty(),
                   wxT("the path shouldn't contain file name nor extension") );
-
+#endif
     Assign(volume, path, name, ext, hasExt, format);
 }