1//-----------------------------------------------------------------------------
2/** @file pentobi/qml/ButtonCancel.qml
3    @author Markus Enzenberger
4    @copyright GNU General Public License version 3 or later */
5//-----------------------------------------------------------------------------
6
7import QtQuick.Controls 2.2
8
9Button {
10    text: qsTr("Cancel")
11    DialogButtonBox.buttonRole: DialogButtonBox.RejectRole
12}
13