diff options
author | Kavindra Palaraja <kpalaraja@luxoft.com> | 2019-03-19 09:20:40 +0100 |
---|---|---|
committer | Kavindra Palaraja <kpalaraja@luxoft.com> | 2019-03-19 09:23:38 +0000 |
commit | 990982c03c092282462d8409ccd8b8365b0a9dfa (patch) | |
tree | 5addb23ab86251ec336db2122b039964ba24534f /src | |
parent | 26fccd2e63ae82d1883077dfb14b7720b3c93ef1 (diff) | |
download | qtwayland-990982c03c092282462d8409ccd8b8365b0a9dfa.tar.gz |
[doc] Fix mismatch in function signature to address a qdoc warning
* In the header file, this was uint32_t
Change-Id: I5c2e343a2f8ec04b71ef4db577062b5c76f64c72
Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
Diffstat (limited to 'src')
-rw-r--r-- | src/compositor/compositor_api/qwaylandkeyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compositor/compositor_api/qwaylandkeyboard.cpp b/src/compositor/compositor_api/qwaylandkeyboard.cpp index 68d855a6..5f3bd3d4 100644 --- a/src/compositor/compositor_api/qwaylandkeyboard.cpp +++ b/src/compositor/compositor_api/qwaylandkeyboard.cpp @@ -486,7 +486,7 @@ QWaylandClient *QWaylandKeyboard::focusClient() const /*! * Sends the current key modifiers to \a client with the given \a serial. */ -void QWaylandKeyboard::sendKeyModifiers(QWaylandClient *client, uint serial) +void QWaylandKeyboard::sendKeyModifiers(QWaylandClient *client, uint32_t serial) { Q_D(QWaylandKeyboard); QtWaylandServer::wl_keyboard::Resource *resource = d->resourceMap().value(client->client()); |