Update protocol to other surface roles
[apps/launcher.git] / launcher / src / shell-desktop.cpp
index b8e6ef0..8b78f6f 100644 (file)
@@ -85,7 +85,8 @@ Shell::deactivate_app(const QString &app_id)
 
 void
 Shell::set_window_props(QWindow *win, const QString &app_id,
-                       uint32_t props, int x, int y)
+                       uint32_t props, int x, int y, int bx, int by,
+                       int bwidth, int bheight)
 {
        QScreen *screen = nullptr;
        struct wl_output *output;
@@ -103,5 +104,6 @@ Shell::set_window_props(QWindow *win, const QString &app_id,
        output = getWlOutput(screen);
        agl_shell_desktop_set_app_property(this->shell.get(),
                                           app_id.toStdString().c_str(),
-                                          props, x, y, output);
+                                          props, x, y, bx, by,
+                                          bwidth, bheight, output);
 }