summaryrefslogtreecommitdiff
path: root/shared/fileError.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:01:29 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:01:29 +0200
commit9a2a524f1e311853d08050be2dcdddc09ac7759a (patch)
treed8e4a24169fce88c2d89931d58514889a0bcb0ea /shared/fileError.h
parent2.3 (diff)
downloadFreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.tar.gz
FreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.tar.bz2
FreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.zip
3.0
Diffstat (limited to 'shared/fileError.h')
-rw-r--r--shared/fileError.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/shared/fileError.h b/shared/fileError.h
index f5c6bdbd..daf97910 100644
--- a/shared/fileError.h
+++ b/shared/fileError.h
@@ -6,20 +6,20 @@
namespace FreeFileSync
{
- class FileError //Exception class used to notify file/directory copy/delete errors
- {
- public:
- FileError(const wxString& message) :
- errorMessage(message) {}
+class FileError //Exception class used to notify file/directory copy/delete errors
+{
+public:
+ FileError(const wxString& message) :
+ errorMessage(message) {}
- const wxString& show() const
- {
- return errorMessage;
- }
+ const wxString& show() const
+ {
+ return errorMessage;
+ }
- private:
- wxString errorMessage;
- };
+private:
+ wxString errorMessage;
+};
}
#endif // FILEERROR_H_INCLUDED
bgstack15