Added parsing of CSV-formatted Symbian event logs
[qwerkisync] / Settings.cpp
index dc462c6..6032f4b 100644 (file)
@@ -30,14 +30,14 @@ Settings::Settings()
        setMode(MODE_EXPORT);
 
        // We don't process anything by default
-       setShouldProcess(TYPE_SENT, EVENTTYPE_SMS, false);
-       setShouldProcess(TYPE_SENT, EVENTTYPE_MMS, false);
-       setShouldProcess(TYPE_SENT, EVENTTYPE_CHAT, false);
+       setShouldProcess(TYPE_SENT, EventTypes::EVENT_TYPE_SMS, false);
+       setShouldProcess(TYPE_SENT, EventTypes::EVENT_TYPE_MMS, false);
+       setShouldProcess(TYPE_SENT, EventTypes::EVENT_TYPE_CHAT, false);
 
        // We still don't process anything by default
-       setShouldProcess(TYPE_RECIEVED, EVENTTYPE_SMS, false);
-       setShouldProcess(TYPE_RECIEVED, EVENTTYPE_MMS, false);
-       setShouldProcess(TYPE_RECIEVED, EVENTTYPE_CHAT, false);
+       setShouldProcess(TYPE_RECIEVED, EventTypes::EVENT_TYPE_SMS, false);
+       setShouldProcess(TYPE_RECIEVED, EventTypes::EVENT_TYPE_MMS, false);
+       setShouldProcess(TYPE_RECIEVED, EventTypes::EVENT_TYPE_CHAT, false);
 
        // Default to the UK :)
        setCountryCode(44);