aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/radiobutton.qml
blob: e36944cd5dee76a970f5f5cb1cd193dcc36b98c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.5
import QtQuick.Window 2.2
import QtQuick.Controls 2.1

Window {
    visible: true

    RadioButton {
        id: radiobutton
        objectName: "radiobutton"
        text: "RadioButton"
    }
}