From: Jamie Thompson Date: Thu, 25 Aug 2011 00:47:01 +0000 (+0100) Subject: Fixed bug where phone numbers from Symbian CSV call logs that began with '+' where... X-Git-Url: http://vcs.maemo.org/git/?p=qwerkisync;a=commitdiff_plain;h=48aa85b627d1367979cf57878ceceecf028e05f2 Fixed bug where phone numbers from Symbian CSV call logs that began with '+' where not parsed correctly. --- diff --git a/EventParsers/CSVSymbianEventLogParser.cpp b/EventParsers/CSVSymbianEventLogParser.cpp index b24c894..926a247 100644 --- a/EventParsers/CSVSymbianEventLogParser.cpp +++ b/EventParsers/CSVSymbianEventLogParser.cpp @@ -41,7 +41,7 @@ public: const QString ExtractString(const QString &originalString) { - QRegExp content("^[\"\']?(\\w*)?[\"\']?$"); + QRegExp content("^[\"\']?(.*)?[\"\']?$"); content.indexIn(originalString.trimmed()); return content.cap(1); }