SystemDialog: Strip trailing whitespace (automatic change)

This commit is contained in:
ivan tkachenko 2024-02-20 22:31:39 +06:00
parent d3fc0cf3ef
commit ec37300c9e
No known key found for this signature in database
GPG key ID: AF72731B7C654CB3

View file

@ -14,39 +14,39 @@ import "private" as Private
Item { Item {
id: root id: root
default property Item mainItem default property Item mainItem
/** /**
* Title of the dialog. * Title of the dialog.
*/ */
property string mainText: "" property string mainText: ""
/** /**
* Subtitle of the dialog. * Subtitle of the dialog.
*/ */
property string subtitle: "" property string subtitle: ""
/** /**
* This property holds the default padding of the content. * This property holds the default padding of the content.
*/ */
property real padding: Kirigami.Units.smallSpacing property real padding: Kirigami.Units.smallSpacing
/** /**
* This property holds the left padding of the content. If not specified, it uses `padding`. * This property holds the left padding of the content. If not specified, it uses `padding`.
*/ */
property real leftPadding: padding property real leftPadding: padding
/** /**
* This property holds the right padding of the content. If not specified, it uses `padding`. * This property holds the right padding of the content. If not specified, it uses `padding`.
*/ */
property real rightPadding: padding property real rightPadding: padding
/** /**
* This property holds the top padding of the content. If not specified, it uses `padding`. * This property holds the top padding of the content. If not specified, it uses `padding`.
*/ */
property real topPadding: padding property real topPadding: padding
/** /**
* This property holds the bottom padding of the content. If not specified, it uses `padding`. * This property holds the bottom padding of the content. If not specified, it uses `padding`.
*/ */
@ -127,7 +127,7 @@ Item {
} }
} }
} }
readonly property var contents: ColumnLayout { readonly property var contents: ColumnLayout {
id: column id: column
spacing: 0 spacing: 0