forked from qt-creator/qt-creator
16 lines
312 B
QML
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
|
|
}
|
|
}
|