From bca62233b707c3d0b167417aaa4df58bf44360d4 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: 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. Change-Id: If1202537a40d746e263fd6e6f67e316a2cdb109e Reviewed-by: David Edmundson (cherry picked from commit a328e2c5e0594ff476a9df2fcdc3b03894ff7a15) Reviewed-by: Qt Cherry-pick Bot --- src/client/qwaylandwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp index f5327c05..a109126d 100644 --- a/src/client/qwaylandwindow.cpp +++ b/src/client/qwaylandwindow.cpp @@ -1632,4 +1632,4 @@ void QWaylandWindow::closeChildPopups() { QT_END_NAMESPACE -#include "qwaylandwindow.moc" +#include "moc_qwaylandwindow_p.cpp" -- cgit v1.2.1