Files
qt-creator/share/qtcreator/qmldesigner/propertyeditor/Qt/ComboBox.qml
2010-02-05 15:42:31 +10:00

16 lines
312 B
QML

import Qt 4.6
import Bauhaus 1.0
QComboBox {
id: comboBox
property var backendValue
ExtendedFunctionButton {
backendValue: (comboBox.backendValue === undefined || comboBox.backendValue === null)
? null : comboBox.backendValue;
y: 3
x: 3
}
}