Fixed bug where phone numbers from Symbian CSV call logs that began with '+' where...
[qwerkisync] / 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);
 }