From 113f76cffbd4a62b3c538a264ebc309e216a9257 Mon Sep 17 00:00:00 2001 From: Juha Vuolle Date: Tue, 16 Apr 2024 12:54:00 +0300 Subject: QNonContiguousByteDevice private classes: add Q_OBJECT macro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTBUG-122619 Change-Id: If50e051d5c6eed04ed03a97f0a1dafc7b47d551e Reviewed-by: MÃ¥rten Nordheim --- src/corelib/io/qnoncontiguousbytedevice_p.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/corelib/io/qnoncontiguousbytedevice_p.h') diff --git a/src/corelib/io/qnoncontiguousbytedevice_p.h b/src/corelib/io/qnoncontiguousbytedevice_p.h index 0daadbb714..eb75034c6a 100644 --- a/src/corelib/io/qnoncontiguousbytedevice_p.h +++ b/src/corelib/io/qnoncontiguousbytedevice_p.h @@ -66,6 +66,7 @@ public: class QNonContiguousByteDeviceByteArrayImpl : public QNonContiguousByteDevice { + Q_OBJECT public: explicit QNonContiguousByteDeviceByteArrayImpl(QByteArray *ba); ~QNonContiguousByteDeviceByteArrayImpl(); @@ -83,6 +84,7 @@ protected: class QNonContiguousByteDeviceRingBufferImpl : public QNonContiguousByteDevice { + Q_OBJECT public: explicit QNonContiguousByteDeviceRingBufferImpl(std::shared_ptr rb); ~QNonContiguousByteDeviceRingBufferImpl(); @@ -143,6 +145,7 @@ protected: // ... and the reverse thing class QByteDeviceWrappingIoDevice : public QIODevice { + Q_OBJECT public: explicit QByteDeviceWrappingIoDevice(QNonContiguousByteDevice *bd); ~QByteDeviceWrappingIoDevice(); -- cgit v1.2.3