Fixed bug where phone numbers from Symbian CSV call logs that began with '+' where...
authorJamie Thompson <jamie@.(none)>
Thu, 25 Aug 2011 00:47:01 +0000 (01:47 +0100)
committerJamie Thompson <jamie@.(none)>
Thu, 25 Aug 2011 00:47:01 +0000 (01:47 +0100)
EventParsers/CSVSymbianEventLogParser.cpp

index b24c894..926a247 100644 (file)
@@ -41,7 +41,7 @@ public:
 
 const QString ExtractString(const QString &originalString)
 {
-       QRegExp content("^[\"\']?(\\w*)?[\"\']?$");
+       QRegExp content("^[\"\']?(.*)?[\"\']?$");
        content.indexIn(originalString.trimmed());
        return content.cap(1);
 }