bruns added a comment.

  Please put the dead code removal in a separate review.

INLINE COMMENTS

> svg.cpp:111
>      const QString contentsAsString(QString::fromLatin1(contents));
> -    QRegExp idExpr(QLatin1String("id\\s*=\\s*(['\"])(\\d+-\\d+-.*)\\1"));
> +    static QRegExp 
> idExpr(QLatin1String("id\\s*=\\s*(['\"])(\\d+-\\d+-.*)\\1"));
>      idExpr.setMinimal(true);

Please use a QRegularExpression with lazy quantifiers, you can use `const 
static` then, no need for `QRegExp.setMinimal(true)`.
Just replace `*`/`+` with `*?`/`+?`.

REPOSITORY
  R242 Plasma Framework (Library)

REVISION DETAIL
  https://phabricator.kde.org/D21788

To: apol, #plasma, #frameworks
Cc: bruns, kde-frameworks-devel, LeGast00n, michaelh, ngraham

Reply via email to