aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/welcome
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-09-15 15:16:13 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-09-15 15:16:13 +0200
commitd207c8cdcb499726d4b89848cf6c48ad74ba3d86 (patch)
tree56f90b3f57733f73cf35e94ca48960ca481be268 /src/plugins/welcome
parentff3f7e4d19e4691b904b5165d033457db2ab06d1 (diff)
L10n: tr()-fixes, message strings, compiler warnings.
Rename 'QML standalone application' to 'QML application' and the 'old-style' QML applications to 'QML Viewer based applications'. For the QML renaming: Rubber-stamped-by: Alessandro Portale <alessandro.portale@nokia.com>
Diffstat (limited to 'src/plugins/welcome')
-rw-r--r--src/plugins/welcome/rssfetcher.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/welcome/rssfetcher.cpp b/src/plugins/welcome/rssfetcher.cpp
index 7b272e35f3..e37a9cf2fd 100644
--- a/src/plugins/welcome/rssfetcher.cpp
+++ b/src/plugins/welcome/rssfetcher.cpp
@@ -219,6 +219,9 @@ void RSSFetcher::parseXml(QIODevice *device)
}
}
if (xmlReader.error() && xmlReader.error() != QXmlStreamReader::PrematureEndOfDocumentError) {
- qWarning() << "XML ERROR:" << xmlReader.lineNumber() << ": " << xmlReader.errorString();
+ qWarning("Welcome::Internal::RSSFetcher: XML ERROR: %d: %s (%s)",
+ int(xmlReader.lineNumber()),
+ qPrintable(xmlReader.errorString()),
+ qPrintable(titleString));
}
}