From 3d231b3cb56b89f967055ff3657def06dfd32a16 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Sun, 4 Apr 2021 17:12:59 +0300 Subject: [PATCH] Remove documentation for already documented methods in AbstractOutput The documentation in AbstractWaylandOutput is the same as the one in the AbstractOutput class. --- src/abstract_wayland_output.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/abstract_wayland_output.h b/src/abstract_wayland_output.h index e39f42e68e..f394e29f10 100644 --- a/src/abstract_wayland_output.h +++ b/src/abstract_wayland_output.h @@ -63,12 +63,7 @@ public: // TODO: The name is ambiguous. Rename this function. QSize pixelSize() const override; - qreal scale() const override; - - /** - * The geometry of this output in global compositor co-ordinates (i.e scaled) - */ QRect geometry() const override; QSize physicalSize() const override; @@ -83,9 +78,6 @@ public: */ Transform transform() const; - /** - * Current refresh rate in 1/ms. - */ int refreshRate() const override; bool isInternal() const override { @@ -106,12 +98,6 @@ public: } bool isEnabled() const override; - /** - * Enable or disable the output. - * - * This differs from updateDpms as it also removes the wl_output. - * The default is on. - */ void setEnabled(bool enable) override; QString description() const;