diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-22 18:21:32 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-22 18:21:32 +0700 |
commit | 33db07fbf055148633414d3d0af3783a91d2c630 (patch) | |
tree | 18b691e10f847cf9db7a010c4c66097ed659b8bf /forms | |
parent | 29d55438029d1c80ffa81b481fb02d06e46f8721 (diff) |
changed `checkBox`to `taskTitle`
Diffstat (limited to 'forms')
-rw-r--r-- | forms/TaskForm.ui.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/TaskForm.ui.qml b/forms/TaskForm.ui.qml index b8c23e5..52c0f02 100644 --- a/forms/TaskForm.ui.qml +++ b/forms/TaskForm.ui.qml @@ -4,7 +4,7 @@ import QtQuick.Layouts 1.12 GridLayout { property alias task: task - property alias checkBox: checkBox + property alias taskTitle: taskTitle id: task width: fillWidth @@ -37,7 +37,7 @@ GridLayout { Layout.fillWidth: true Layout.fillHeight: true Label { - id: checkBox + id: taskTitle text: qsTr("Task title") Layout.columnSpan: 0 Layout.rowSpan: 0 |