From: Frederik Gladhorn Date: Wed, 5 Sep 2012 13:58:32 +0000 (+0200) Subject: Output absolute paths in qdoc messages. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b813accc6f75b446d9374b1ed253b6dc17f45f8;p=profile%2Fivi%2Fqtbase.git Output absolute paths in qdoc messages. Change-Id: I4499bb0464cca3703026e317e940612091bf55a2 Reviewed-by: Martin Smith --- diff --git a/src/tools/qdoc/location.cpp b/src/tools/qdoc/location.cpp index 272be50..2d7457d 100644 --- a/src/tools/qdoc/location.cpp +++ b/src/tools/qdoc/location.cpp @@ -376,8 +376,7 @@ QString Location::toString() const if (isEmpty()) { str = programName; - } - else { + } else { Location loc2 = *this; loc2.setEtc(false); loc2.pop(); @@ -405,6 +404,10 @@ QString Location::toString() const QString Location::top() const { QString str = filePath(); + if (!QDir::isAbsolutePath(str)) { + QDir path(str); + str = path.absolutePath(); + } if (lineNo() >= 1) { str += QLatin1Char(':'); str += QString::number(lineNo());