From a448b90726a43a8ecf076303a9a3f62145be2b0e Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Mon, 17 Mar 2014 10:57:39 -0700 Subject: [PATCH] fix some Q_OBJECT macros in class headers --- interface/src/VoxelHideShowThread.h | 1 + interface/src/VoxelPacketProcessor.h | 1 + 2 files changed, 2 insertions(+) diff --git a/interface/src/VoxelHideShowThread.h b/interface/src/VoxelHideShowThread.h index 2925888022..dc1f2062c1 100644 --- a/interface/src/VoxelHideShowThread.h +++ b/interface/src/VoxelHideShowThread.h @@ -16,6 +16,7 @@ /// Generalized threaded processor for handling received inbound packets. class VoxelHideShowThread : public GenericThread { + Q_OBJECT public: VoxelHideShowThread(VoxelSystem* theSystem); diff --git a/interface/src/VoxelPacketProcessor.h b/interface/src/VoxelPacketProcessor.h index 42040fe446..2acd347e99 100644 --- a/interface/src/VoxelPacketProcessor.h +++ b/interface/src/VoxelPacketProcessor.h @@ -16,6 +16,7 @@ /// Handles processing of incoming voxel packets for the interface application. As with other ReceivedPacketProcessor classes /// the user is responsible for reading inbound packets and adding them to the processing queue by calling queueReceivedPacket() class VoxelPacketProcessor : public ReceivedPacketProcessor { + Q_OBJECT protected: virtual void processPacket(const SharedNodePointer& sendingNode, const QByteArray& packet); };