summaryrefslogtreecommitdiff
path: root/library/fileHandling.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/fileHandling.h')
-rw-r--r--library/fileHandling.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/library/fileHandling.h b/library/fileHandling.h
index 6c9a0400..de068d1f 100644
--- a/library/fileHandling.h
+++ b/library/fileHandling.h
@@ -1,7 +1,6 @@
#ifndef RECYCLER_H_INCLUDED
#define RECYCLER_H_INCLUDED
-#include "globalFunctions.h"
#include <wx/dir.h>
#include "zstring.h"
@@ -11,7 +10,7 @@ public:
FileError(const Zstring& message) :
errorMessage(message) {}
- Zstring show() const
+ const Zstring& show() const
{
return errorMessage;
}
@@ -25,7 +24,7 @@ namespace FreeFileSync
{
struct FileInfo
{
- wxULongLong fileSize; //unit: bytes!
+ wxULongLong fileSize; //unit: bytes!
wxLongLong lastWriteTimeRaw; //number of seconds since Jan. 1st 1970 UTC
};
bgstack15