Skip to content

Commit

Permalink
Suppress CRITICAL error about QML connections syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
domi4484 committed Aug 24, 2021
1 parent 57a1ae0 commit 57f3cd0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion document_management_system/qml/DocumentList.qml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ Item {

Connections{
target: parentWidget
onSignalCurrentViewChanged: updateCurrentView()
function onSignalCurrentViewChanged()
{
updateCurrentView()
}
}

Rectangle {
Expand Down

0 comments on commit 57f3cd0

Please sign in to comment.