~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/plugins/qtsupport/qtoutputformatter.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-12-02 09:16:15 UTC
  • mfrom: (1.1.29)
  • Revision ID: timo.jyrinki@canonical.com-20131202091615-xbj1os1f604ber1m
New upstream release candidate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    , m_qmlError(QLatin1String("^(file:///.+"    // file url
45
45
                               ":\\d+"           // colon, line
46
46
                               "(?::\\d+)?)"     // colon, column (optional)
47
 
                               ":"))             // colon
 
47
                               "[: \t]"))        // colon, space or tab
48
48
    , m_qtError(QLatin1String("Object::.*in (.*:\\d+)"))
49
49
    , m_qtAssert(QLatin1String("ASSERT: .* in file (.+, line \\d+)"))
50
50
    , m_qtAssertX(QLatin1String("ASSERT failure in .*: \".*\", file (.+, line \\d+)"))