make wxFileName::{Mk,Rm}dir() const (closes #10868)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -892,7 +892,7 @@ public:
|
||||
@return Returns @true if the directory was successfully created, @false
|
||||
otherwise.
|
||||
*/
|
||||
bool Mkdir(int perm = wxS_DIR_DEFAULT, int flags = 0);
|
||||
bool Mkdir(int perm = wxS_DIR_DEFAULT, int flags = 0) const;
|
||||
|
||||
/**
|
||||
Creates a directory.
|
||||
@@ -1009,7 +1009,7 @@ public:
|
||||
@return Returns @true if the directory was successfully deleted, @false
|
||||
otherwise.
|
||||
*/
|
||||
bool Rmdir(int flags = 0);
|
||||
bool Rmdir(int flags = 0) const;
|
||||
|
||||
/**
|
||||
Deletes the specified directory from the file system.
|
||||
|
Reference in New Issue
Block a user