summaryrefslogtreecommitdiff
path: root/zen/file_io.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
commit7302bb4484d517a72cdffbd13ec7a9f2324cde01 (patch)
tree17d2964c6768d49510206836a496fb1802a63e08 /zen/file_io.h
parent8.5 (diff)
downloadFreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.gz
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.bz2
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.zip
8.6
Diffstat (limited to 'zen/file_io.h')
-rw-r--r--zen/file_io.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/zen/file_io.h b/zen/file_io.h
index 89cf77d5..4a135150 100644
--- a/zen/file_io.h
+++ b/zen/file_io.h
@@ -51,8 +51,8 @@ private:
class FileInput : public FileBase
{
public:
- FileInput(const Zstring& filepath); //throw FileError, ErrorFileLocked
- FileInput(FileHandle handle, const Zstring& filepath); //takes ownership!
+ FileInput(const Zstring& filePath); //throw FileError, ErrorFileLocked
+ FileInput(FileHandle handle, const Zstring& filePath); //takes ownership!
~FileInput();
//Windows: better use 64kB ?? https://technet.microsoft.com/en-us/library/cc938632
@@ -76,8 +76,8 @@ public:
ACC_CREATE_NEW
};
- FileOutput(const Zstring& filepath, AccessFlag access); //throw FileError, ErrorTargetExisting
- FileOutput(FileHandle handle, const Zstring& filepath); //takes ownership!
+ FileOutput(const Zstring& filePath, AccessFlag access); //throw FileError, ErrorTargetExisting
+ FileOutput(FileHandle handle, const Zstring& filePath); //takes ownership!
~FileOutput();
FileOutput(FileOutput&& tmp);
bgstack15