smsapp: fix reference to undefined var in QML
Launching smsapp prints:
qrc:/qml/main.qml:36: ReferenceError: _initialMessage is not defined
This patch applies the changes made to the property from C++ in
c17972881b
to QML.
This commit is contained in:
parent
1d36164230
commit
60bf200723
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ Kirigami.ApplicationWindow
|
|||
|
||||
pageStack.initialPage: ConversationList {
|
||||
title: i18nd("kdeconnect-sms", "KDE Connect SMS")
|
||||
initialMessage: _initialMessage
|
||||
initialMessage: initialMessage
|
||||
}
|
||||
|
||||
Component {
|
||||
|
|
Loading…
Reference in a new issue