Fix typo
Summary: Fix a typo Reviewers: #plasma, davidedmundson Reviewed By: #plasma, davidedmundson Subscribers: plasma-devel, #frameworks Tags: #frameworks, #plasma_on_wayland Differential Revision: https://phabricator.kde.org/D10053
This commit is contained in:
parent
c829817117
commit
6d3e7691b5
2 changed files with 3 additions and 3 deletions
|
@ -273,7 +273,7 @@ const struct wl_surface_interface SurfaceInterface::Private::s_interface = {
|
|||
resourceDestroyedCallback,
|
||||
attachCallback,
|
||||
damageCallback,
|
||||
frameCallaback,
|
||||
frameCallback,
|
||||
opaqueRegionCallback,
|
||||
inputRegionCallback,
|
||||
commitCallback,
|
||||
|
@ -605,7 +605,7 @@ void SurfaceInterface::Private::damageCallback(wl_client *client, wl_resource *r
|
|||
cast<Private>(resource)->damage(QRect(x, y, width, height));
|
||||
}
|
||||
|
||||
void SurfaceInterface::Private::frameCallaback(wl_client *client, wl_resource *resource, uint32_t callback)
|
||||
void SurfaceInterface::Private::frameCallback(wl_client *client, wl_resource *resource, uint32_t callback)
|
||||
{
|
||||
auto s = cast<Private>(resource);
|
||||
Q_ASSERT(client == *s->client);
|
||||
|
|
|
@ -123,7 +123,7 @@ private:
|
|||
|
||||
static void attachCallback(wl_client *client, wl_resource *resource, wl_resource *buffer, int32_t sx, int32_t sy);
|
||||
static void damageCallback(wl_client *client, wl_resource *resource, int32_t x, int32_t y, int32_t width, int32_t height);
|
||||
static void frameCallaback(wl_client *client, wl_resource *resource, uint32_t callback);
|
||||
static void frameCallback(wl_client *client, wl_resource *resource, uint32_t callback);
|
||||
static void opaqueRegionCallback(wl_client *client, wl_resource *resource, wl_resource *region);
|
||||
static void inputRegionCallback(wl_client *client, wl_resource *resource, wl_resource *region);
|
||||
static void commitCallback(wl_client *client, wl_resource *resource);
|
||||
|
|
Loading…
Reference in a new issue