aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/button.qml
blob: 100da3d4ba96f4de49e287628db13e55858c88d9 (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

    Button {
        id: button
        objectName: "button"
        text: "Button"
    }
}