summaryrefslogtreecommitdiff
path: root/library/error_log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/error_log.cpp')
-rw-r--r--library/error_log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/error_log.cpp b/library/error_log.cpp
index 483d670b..a78b1c9a 100644
--- a/library/error_log.cpp
+++ b/library/error_log.cpp
@@ -9,10 +9,10 @@
#include "../shared/i18n.h"
-using ffs3::ErrorLogging;
+using zen::ErrorLogging;
-void ErrorLogging::logMsg(const wxString& message, ffs3::MessageType type)
+void ErrorLogging::logMsg(const wxString& message, zen::MessageType type)
{
Entry newEntry;
newEntry.type = type;
bgstack15