Group functions have been fixed

This commit is contained in:
Arin Alexander
2017-03-07 19:09:13 +03:00
parent 58fd7a855f
commit d86c6f226b
5 changed files with 42 additions and 12 deletions

View File

@@ -67,4 +67,13 @@ QString replaceHTMLSymbols(const QString &value)
return result;
}
QVector<QString> normalizeCaptures(const QRegExp& reg){
QVector<QString> result;
foreach (QString cap, reg.capturedTexts()) {
if (!cap.isEmpty())
result.append(cap);
}
return result;
}
} //namespace LimeReport