1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-02-05 05:47:26 +03:00

const correctness and namespace

This commit is contained in:
Johan Smith Agudelo Rodriguez 2016-12-29 00:42:55 -05:00
parent 84a5b5473a
commit 1fe1049332

View File

@ -9,6 +9,10 @@
#include <Plasma/Containment>
namespace Latte {
class VisibilityManagerPrivate;
class VisibilityManager : public QObject {
Q_OBJECT
@ -39,7 +43,7 @@ public:
/**
* @brief updateDockGeometry, the window geometry in absolute coordinates.
*/
void updateDockGeometry(QRect &geometry);
void updateDockGeometry(const QRect &geometry);
signals:
void mustBeShown();
@ -54,4 +58,6 @@ signals:
private:
VisibilityManagerPrivate *const d;
};
}
#endif // VISIBILITYMANAGER_H