]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/filename.h
Doc and comment cleanup, fixes, tweaks
[wxWidgets.git] / interface / wx / filename.h
index f44879b8138825667a7b745f496426678002b58e..010617a97d115510695ce2d885f7e34db34c19a5 100644 (file)
@@ -580,7 +580,7 @@ public:
         not be read (because e.g. the file is locked by another process) the returned
         value is ::wxInvalidSize.
     */
         not be read (because e.g. the file is locked by another process) the returned
         value is ::wxInvalidSize.
     */
-    wxULongLong GetSize();
+    wxULongLong GetSize() const;
 
     /**
         Returns the size of the file If the file does not exist or its size could
 
     /**
         Returns the size of the file If the file does not exist or its size could
@@ -830,7 +830,8 @@ public:
         Creates a directory.
 
         @param perm
         Creates a directory.
 
         @param perm
-            The permissions for the newly created directory
+            The permissions for the newly created directory.
+            See the ::wxPosixPermissions enumeration for more info.
         @param flags
             If the flags contain @c wxPATH_MKDIR_FULL flag, try to create each
             directory in the path and also don't return an error if the target
         @param flags
             If the flags contain @c wxPATH_MKDIR_FULL flag, try to create each
             directory in the path and also don't return an error if the target
@@ -839,24 +840,25 @@ public:
         @return Returns @true if the directory was successfully created, @false
                 otherwise.
     */
         @return Returns @true if the directory was successfully created, @false
                 otherwise.
     */
-    bool Mkdir(int perm = 0777, int flags = 0);
+    bool Mkdir(int perm = wxS_DIR_DEFAULT, int flags = 0);
 
     /**
         Creates a directory.
 
         @param dir
 
     /**
         Creates a directory.
 
         @param dir
-            the directory to create
+            The directory to create
         @param parm
         @param parm
-            the permissions for the newly created directory
+            The permissions for the newly created directory.
+            See the ::wxPosixPermissions enumeration for more info.
         @param flags
         @param flags
-            if the flags contain @c wxPATH_MKDIR_FULL flag, try to create each
+            If the flags contain @c wxPATH_MKDIR_FULL flag, try to create each
             directory in the path and also don't return an error if the target
             directory already exists.
 
         @return Returns @true if the directory was successfully created, @false
                 otherwise.
     */
             directory in the path and also don't return an error if the target
             directory already exists.
 
         @return Returns @true if the directory was successfully created, @false
                 otherwise.
     */
-    static bool Mkdir(const wxString& dir, int perm = 0777,
+    static bool Mkdir(const wxString& dir, int perm = wxS_DIR_DEFAULT,
                       int flags = 0);
 
     /**
                       int flags = 0);
 
     /**