From 6f588c6fd3b4345e5d697b4a3b28e7ea70576ead Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Thu, 3 Apr 2025 07:34:17 +0200 Subject: [PATCH] Add missing include mocs --- src/imageformats/dds.cpp | 2 ++ src/imageformats/sct.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/src/imageformats/dds.cpp b/src/imageformats/dds.cpp index 9755709..acedbd0 100644 --- a/src/imageformats/dds.cpp +++ b/src/imageformats/dds.cpp @@ -2557,3 +2557,5 @@ QImageIOHandler *QDDSPlugin::create(QIODevice *device, const QByteArray &format) handler->setFormat(format); return handler; } + +#include "moc_dds_p.cpp" diff --git a/src/imageformats/sct.cpp b/src/imageformats/sct.cpp index 5b7f923..8405731 100644 --- a/src/imageformats/sct.cpp +++ b/src/imageformats/sct.cpp @@ -457,3 +457,4 @@ QImageIOHandler *ScitexPlugin::create(QIODevice *device, const QByteArray &forma return handler; } +#include "moc_sct_p.cpp"