From f9180f6cd6fe2cdb8faf68a268822aa80c19f558 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Nordheim?= Date: Sun, 19 Feb 2023 20:42:35 +0100 Subject: [PATCH] Fix automoc warning regarding include There's no Q_OBJECT etc. in the .cpp file, so likely it was removed, or it was intended to include the moc file for the sake of the header. But moc-file for the header has another naming scheme. Pick-to: 6.5 Change-Id: If1202537a40d746e263fd6e6f67e316a2cdb109e Reviewed-by: David Edmundson --- src/plugins/platforms/wayland/qwaylandwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/platforms/wayland/qwaylandwindow.cpp b/src/plugins/platforms/wayland/qwaylandwindow.cpp index f5327c05c6c..a109126d4f7 100644 --- a/src/plugins/platforms/wayland/qwaylandwindow.cpp +++ b/src/plugins/platforms/wayland/qwaylandwindow.cpp @@ -1632,4 +1632,4 @@ void QWaylandWindow::closeChildPopups() { QT_END_NAMESPACE -#include "qwaylandwindow.moc" +#include "moc_qwaylandwindow_p.cpp"