summaryrefslogtreecommitdiffstats
path: root/core/os/file_access.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-09-17 22:40:54 +0200
committerGitHub <noreply@github.com>2017-09-17 22:40:54 +0200
commit73b8e5acab7e389d7ce8cfb48d533ba74cd86133 (patch)
tree46c6a9cbc85eba19818fa5b9f8ef3c2a6615c194 /core/os/file_access.h
parent65ef19abe3cb95df72f5256b17ec6667ed26cf6d (diff)
parent3528b1e571dee24917b0141232f135e29bf088ba (diff)
downloadredot-engine-73b8e5acab7e389d7ce8cfb48d533ba74cd86133.tar.gz
Merge pull request #11362 from marcelofg55/fix_x11_export
Fix x11 exported executables not getting the +x flag
Diffstat (limited to 'core/os/file_access.h')
-rw-r--r--core/os/file_access.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/os/file_access.h b/core/os/file_access.h
index 8e5728f525..151c41c263 100644
--- a/core/os/file_access.h
+++ b/core/os/file_access.h
@@ -140,6 +140,8 @@ public:
virtual Error reopen(const String &p_path, int p_mode_flags); ///< does not change the AccessType
+ virtual Error _chmod(const String &p_path, int p_mod) {}
+
static FileAccess *create(AccessType p_access); /// Create a file access (for the current platform) this is the only portable way of accessing files.
static FileAccess *create_for_path(const String &p_path);
static FileAccess *open(const String &p_path, int p_mode_flags, Error *r_error = NULL); /// Create a file access (for the current platform) this is the only portable way of accessing files.