]> git.saurik.com Git - wxWidgets.git/commitdiff
wxFILE_SEP_PATH_VMS must be '.', not '/'
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Nov 2001 23:38:06 +0000 (23:38 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Nov 2001 23:38:06 +0000 (23:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12780 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/filefn.h

index 537d889e884a1a1ac13542d885270772743b5522..3e66d0a536b8691a3d984a1169054f0814d6f84a 100644 (file)
@@ -253,16 +253,21 @@ WXDLLEXPORT bool wxMkdir(const wxString& dir, int perm = 0777);
 // Remove directory. Flags reserved for future use.
 WXDLLEXPORT bool wxRmdir(const wxString& dir, int flags = 0);
 
+// ----------------------------------------------------------------------------
 // separators in file names
+// ----------------------------------------------------------------------------
+
+// between file name and extension
 #define wxFILE_SEP_EXT        wxT('.')
+
+// between drive/volume name and the path
 #define wxFILE_SEP_DSK        wxT(':')
+
+// between the path components
 #define wxFILE_SEP_PATH_DOS   wxT('\\')
 #define wxFILE_SEP_PATH_UNIX  wxT('/')
 #define wxFILE_SEP_PATH_MAC   wxT(':')
-#define wxFILE_SEP_PATH_VMS   wxT('/') //This is the Unix way, but somtimes
-                                       //users will give the VMS native paths
-                                       //and than a ']' is needed.
-                                       //         Jouk
+#define wxFILE_SEP_PATH_VMS   wxT('.') // VMS also uses '[' and ']'
 
 // separator in the path list (as in PATH environment variable)
 // there is no PATH variable in Classic Mac OS so just use the