diff --git a/abstract_output.h b/abstract_output.h index db7b10385..090266dbf 100644 --- a/abstract_output.h +++ b/abstract_output.h @@ -164,6 +164,12 @@ public: /** Returns the resolution of the output. */ virtual QSize pixelSize() const = 0; +Q_SIGNALS: + /** + * This signal is emitted when the geometry of this output has changed. + */ + void geometryChanged(); + private: Q_DISABLE_COPY(AbstractOutput) }; diff --git a/abstract_wayland_output.h b/abstract_wayland_output.h index 634dcc553..b1e3be395 100644 --- a/abstract_wayland_output.h +++ b/abstract_wayland_output.h @@ -126,7 +126,6 @@ public: Q_SIGNALS: void modeChanged(); - void geometryChanged(); void outputChange(const QRegion &damagedRegion); protected: