summaryrefslogtreecommitdiff
path: root/shared/fileError.h
diff options
context:
space:
mode:
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