From c6de04773c375997d65e176bbbd48a961cde2431 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Thu, 25 Aug 2022 10:17:37 +0300 Subject: [PATCH] Make Output fields protected It's far more practical in Output subclasses than private access modifier. --- src/output.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/output.h b/src/output.h index 5333656596..75c5611a0d 100644 --- a/src/output.h +++ b/src/output.h @@ -328,11 +328,8 @@ protected: QSize orientateSize(const QSize &size) const; - State m_state; - -private: - Q_DISABLE_COPY(Output) EffectScreenImpl *m_effectScreen = nullptr; + State m_state; Information m_information; QUuid m_uuid; int m_directScanoutCount = 0;