QmlProfiler: use qsTr just around the strings

Change-Id: I23b2fc2d1c64581dbfde9f77d8a39bc5d185bb54
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Tim Jenssen
2014-10-30 14:46:47 +01:00
parent 7dde68996e
commit d14b2850e4

View File

@@ -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);
}