diff --git a/abstract_client.h b/abstract_client.h index cfa1f94953..7abc65c0c7 100644 --- a/abstract_client.h +++ b/abstract_client.h @@ -110,6 +110,7 @@ public: virtual bool wantsInput() const = 0; virtual void checkWorkspacePosition(QRect oldGeometry = QRect(), int oldDesktop = -2) = 0; virtual xcb_timestamp_t userTime() const; + virtual void demandAttention(bool set = true) = 0; virtual void growHorizontal(); virtual void shrinkHorizontal(); diff --git a/client.h b/client.h index 3a9c4bf551..da09b6e64c 100644 --- a/client.h +++ b/client.h @@ -434,7 +434,7 @@ public: bool isDemandingAttention() const { return demands_attention; } - void demandAttention(bool set = true); + void demandAttention(bool set = true) override; void updateDecoration(bool check_workspace_pos, bool force = false); void triggerDecorationRepaint();