fix(BackUpCommuntyBannerPanel): StatusButton port fix
the `clicked()` signal has no longer any parameter
This commit is contained in:
parent
55cb3cbf33
commit
fda78a1003
|
@ -1 +1 @@
|
|||
Subproject commit 1381b1bd152e8db1da4fd0cf93ec90d3206b9815
|
||||
Subproject commit 9a24d59ea86b68d0279df6fdb2a85fd93778bad0
|
|
@ -10,7 +10,7 @@ import utils 1.0
|
|||
|
||||
Rectangle {
|
||||
property string communityId
|
||||
signal backupButtonClicked(var mouse)
|
||||
signal backupButtonClicked()
|
||||
|
||||
id: root
|
||||
height: childrenRect.height + Style.current.padding
|
||||
|
@ -83,7 +83,7 @@ Rectangle {
|
|||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.top: backUpText.bottom
|
||||
anchors.topMargin: Style.current.padding
|
||||
onClicked: root.backupButtonClicked(mouse)
|
||||
onClicked: root.backupButtonClicked()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue