summaryrefslogtreecommitdiff
path: root/library/errorLogging.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:02:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:02:17 +0200
commitb9203ee84953006547f4afd58f405874c87bf0dc (patch)
tree9e41f1533f120e9268e86658c52458630ffd718a /library/errorLogging.h
parent3.0 (diff)
downloadFreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.tar.gz
FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.tar.bz2
FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.zip
3.1
Diffstat (limited to 'library/errorLogging.h')
-rw-r--r--library/errorLogging.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/library/errorLogging.h b/library/errorLogging.h
index 7b2b32c1..24b4a992 100644
--- a/library/errorLogging.h
+++ b/library/errorLogging.h
@@ -13,16 +13,17 @@ class ErrorLogging
public:
ErrorLogging() : errorCount(0) {}
- void logError(const wxString& errorMessage);
- void logWarning(const wxString& warningMessage);
- void logInfo(const wxString& infoMessage);
+ void logInfo( const wxString& infoMessage);
+ void logWarning( const wxString& warningMessage);
+ void logError( const wxString& errorMessage);
+ void logFatalError(const wxString& errorMessage);
int errorsTotal()
{
return errorCount;
}
- const std::vector<wxString>& getFormattedMessages()
+ const std::vector<wxString>& getFormattedMessages() const
{
return formattedMessages;
}
bgstack15