From 48aa85b627d1367979cf57878ceceecf028e05f2 Mon Sep 17 00:00:00 2001 From: Jamie Thompson Date: Thu, 25 Aug 2011 01:47:01 +0100 Subject: [PATCH] Fixed bug where phone numbers from Symbian CSV call logs that began with '+' where not parsed correctly. --- EventParsers/CSVSymbianEventLogParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 1.7.9.5