Only mark slots as slots

remotes/origin/work/show-recording-windows
Aleix Pol 5 years ago
parent f4adff66cc
commit c405877801
  1. 3
      src/effects/thumbnailaside/thumbnailaside.h
  2. 3
      src/focuschain.h

@ -51,12 +51,13 @@ public:
int configuredScreen() const {
return screen;
}
bool isActive() const override;
private Q_SLOTS:
void toggleCurrentThumbnail();
void slotWindowClosed(KWin::EffectWindow *w);
void slotWindowFrameGeometryChanged(KWin::EffectWindow *w, const QRect &old);
void slotWindowDamaged(KWin::EffectWindow* w, const QRegion& damage);
bool isActive() const override;
void repaintAll();
private:
void addThumbnail(EffectWindow* w);

@ -154,6 +154,8 @@ public:
*/
AbstractClient *firstMostRecentlyUsed() const;
bool isUsableFocusCandidate(AbstractClient *c, AbstractClient *prev) const;
public Q_SLOTS:
/**
* @brief Resizes the per virtual desktop focus chains from @p previousSize to @p newSize.
@ -175,7 +177,6 @@ public Q_SLOTS:
void setSeparateScreenFocus(bool enabled);
void setActiveClient(KWin::AbstractClient *client);
void setCurrentDesktop(uint previous, uint newDesktop);
bool isUsableFocusCandidate(AbstractClient *c, AbstractClient *prev) const;
private:
using Chain = QList<AbstractClient*>;

Loading…
Cancel
Save