aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/abstract-fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/abstract-fs.h')
-rw-r--r--backends/fs/abstract-fs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/fs/abstract-fs.h b/backends/fs/abstract-fs.h
index aaae65eed3..519337a486 100644
--- a/backends/fs/abstract-fs.h
+++ b/backends/fs/abstract-fs.h
@@ -122,14 +122,14 @@ public:
virtual bool isReadable() const = 0;
/**
- * Indicates whether this path can be written to or not.
+ * Indicates whether this path is valid or not for usage.
*/
- virtual bool isWritable() const = 0;
+ virtual bool isValid() const = 0;
/**
- * Indicates whether this path is valid or not for usage.
+ * Indicates whether this path can be written to or not.
*/
- virtual bool isValid() const = 0;
+ virtual bool isWritable() const = 0;
/* TODO:
bool isFile();