diff options
Diffstat (limited to 'examples/wayland/qtshell/qml/main.qml')
-rw-r--r-- | examples/wayland/qtshell/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wayland/qtshell/qml/main.qml b/examples/wayland/qtshell/qml/main.qml index 99813b57..7a4f505d 100644 --- a/examples/wayland/qtshell/qml/main.qml +++ b/examples/wayland/qtshell/qml/main.qml @@ -15,7 +15,7 @@ WaylandCompositor { //! [shell] QtShell { - onQtShellSurfaceCreated: screen.handleShellSurface(qtShellSurface) + onQtShellSurfaceCreated: (qtShellSurface) => screen.handleShellSurface(qtShellSurface) } //! [shell] } |