From 4dfb8150fa6dc2b170cc9479c9d560f0f27fc031 Mon Sep 17 00:00:00 2001 From: Vlad Zagorodniy Date: Tue, 27 Aug 2019 08:28:50 +0300 Subject: [PATCH] [platforms/x11] Delete duplicate doxygen comments in X11Output Summary: geometry(), refreshRate(), and gammaRampSize() are already documented in AbstractOutput class. Test Plan: Compiles. Reviewers: #kwin, apol Reviewed By: apol Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D23481 --- plugins/platforms/x11/standalone/x11_output.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/plugins/platforms/x11/standalone/x11_output.h b/plugins/platforms/x11/standalone/x11_output.h index ad16363915..ce622d5b63 100644 --- a/plugins/platforms/x11/standalone/x11_output.h +++ b/plugins/platforms/x11/standalone/x11_output.h @@ -44,21 +44,13 @@ public: QString name() const override; void setName(QString set); - /** - * The geometry of this output in global compositor co-ordinates (i.e scaled) - */ + QRect geometry() const override; void setGeometry(QRect set); - /** - * Current refresh rate in 1/μs = 1000/ms. - */ int refreshRate() const override; void setRefreshRate(int set); - /** - * The size of gamma lookup table. - */ int gammaRampSize() const override; bool setGammaRamp(const GammaRamp &gamma) override;