summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@digia.com>2013-07-11 12:09:12 +0200
committerKai Koehne <kai.koehne@digia.com>2013-07-11 15:09:00 +0300
commita90a841d4238ad979689649d6ff29ca936becf22 (patch)
tree8add49d69d9b439805196afb419bd0fa34cedbb6
parent483e607f273e3f70f274e246faeb63af81eefb33 (diff)
downloadqt-creator-a90a841d4238ad979689649d6ff29ca936becf22.tar.gz
QmlProfiler: make details string match between versions
Change-Id: I21ba44d6160aed5fb4685570bb38da6d83e63096 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
-rw-r--r--plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp b/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp
index 05902742e8..b917020414 100644
--- a/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp
+++ b/plugins/qmlprofiler/qmlprofilerprocessedmodel.cpp
@@ -74,7 +74,7 @@ QString getInitialDetails(const QmlProfilerSimpleModel::QmlEventData &event)
QString details;
// generate details string
if (event.data.isEmpty())
- details = QmlProfilerProcessedModel::tr("Source code not available");
+ details = QmlProfilerProcessedModel::tr("Source code not available.");
else {
details = event.data.join(QLatin1String(" ")).replace(QLatin1Char('\n'),QLatin1Char(' ')).simplified();
QRegExp rewrite(QLatin1String("\\(function \\$(\\w+)\\(\\) \\{ (return |)(.+) \\}\\)"));