aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-03-11 17:58:50 +0100
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-03-11 18:02:14 +0100
commit86ced32ed630a24b2c3b07104863a29c6e241e55 (patch)
tree0bb3465eeb95df873c88509d700b7e563d053531 /share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
parent1158445f6984012fa1743d9e8f579b9bc76d5ca8 (diff)
QmlDesigner.propertyEditor: proper tooltips
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml')
-rw-r--r--share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
index 65a51d9ebc..1471968f18 100644
--- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
+++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
@@ -18,7 +18,7 @@ QFrame {
checkable: true;
checked: true;
id: standardMode;
- toolTip: "general item properties";
+ toolTip: "special properties";
//iconFromFile: "images/rect-icon.png";
text: backendValues.className.value
onClicked: {
@@ -35,7 +35,7 @@ QFrame {
id: layoutMode;
checkable: true;
checked: false;
- toolTip: "layout properties";
+ toolTip: "layout and geometry";
text: "Geometry";
onClicked: {
extendedMode.checked = false;
@@ -49,7 +49,7 @@ QFrame {
QPushButton {
id: extendedMode;
- toolTip: "extended properties";
+ toolTip: "advanced properties";
checkable: true;
checked: false;
text: "Advanced"