summaryrefslogtreecommitdiff
path: root/examples/wayland/server-buffer
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@theqtcompany.com>2015-07-30 15:22:15 +0200
committerJørgen Lind <jorgen.lind@theqtcompany.com>2015-08-28 13:09:42 +0200
commit5d9e9033df46dcf84b0ea719b7240e437906606b (patch)
tree046d6e46af804f0e613e93f7c329285f51aba2fe /examples/wayland/server-buffer
parent2d9b934ba756b46fcdac5a0d8bed240c9d294fb8 (diff)
downloadqtwayland-5d9e9033df46dcf84b0ea719b7240e437906606b.tar.gz
Rename QWaylandQuickView to QWaylandQuickItem
QuickView is already used for something semantically different, lets stick with Item which is a subclass of QWaylandView A QWaylandView is a view of a surface.... Change-Id: I75975485e7b5fb66444fe9fe400effb124882d32
Diffstat (limited to 'examples/wayland/server-buffer')
-rw-r--r--examples/wayland/server-buffer/compositor/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/wayland/server-buffer/compositor/main.cpp b/examples/wayland/server-buffer/compositor/main.cpp
index 287c0cfe..fab0ff8e 100644
--- a/examples/wayland/server-buffer/compositor/main.cpp
+++ b/examples/wayland/server-buffer/compositor/main.cpp
@@ -108,9 +108,9 @@ public:
m_view.show();
}
- Q_INVOKABLE QWaylandQuickView *item(QWaylandSurface *surf)
+ Q_INVOKABLE QWaylandQuickItem *item(QWaylandSurface *surf)
{
- return static_cast<QWaylandQuickView *>(surf->views().first());
+ return static_cast<QWaylandQuickItem *>(surf->views().first());
}
signals: