aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qml
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@theqtcompany.com>2014-10-30 14:46:47 +0100
committerTim Jenssen <tim.jenssen@theqtcompany.com>2014-10-30 16:54:25 +0100
commitd14b2850e46c5756b3941a818c8d4c3866ed8873 (patch)
tree730071843a9dfcf7112819c13374fb0ea364b3d4 /src/plugins/qmlprofiler/qml
parent7dde68996e4a745abafc532ee1f862d85692333a (diff)
QmlProfiler: use qsTr just around the strings
Change-Id: I23b2fc2d1c64581dbfde9f77d8a39bc5d185bb54 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qml')
-rw-r--r--src/plugins/qmlprofiler/qml/CategoryLabel.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qml/CategoryLabel.qml b/src/plugins/qmlprofiler/qml/CategoryLabel.qml
index 3550d7d27b5..da26964af9f 100644
--- a/src/plugins/qmlprofiler/qml/CategoryLabel.qml
+++ b/src/plugins/qmlprofiler/qml/CategoryLabel.qml
@@ -243,7 +243,7 @@ Item {
implicitHeight: txt.height - 1
enabled: expanded || trigger(qmlProfilerModelProxy.count(modelIndex)) > 0
iconSource: expanded ? "arrow_down.png" : "arrow_right.png"
- tooltip: qsTr(expanded ? "Collapse category" : "Expand category.")
+ tooltip: expanded ? qsTr("Collapse category") : qsTr("Expand category.")
onClicked: qmlProfilerModelProxy.setExpanded(modelIndex, !expanded);
}