summary refs log tree commit diff
path: root/src/ui/NhekoCursorShape.h
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-09-18 00:22:33 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-09-18 00:45:50 +0200
commitcfca7157b98c9dc8e0852fe6484bc3f75008af7d (patch)
tree32b92340908a9374214ec7b84c1fac7ea338f56d /src/ui/NhekoCursorShape.h
parentMerge pull request #728 from Thulinma/goto (diff)
downloadnheko-cfca7157b98c9dc8e0852fe6484bc3f75008af7d.tar.xz
Change indentation to 4 spaces
Diffstat (limited to 'src/ui/NhekoCursorShape.h')
-rw-r--r--src/ui/NhekoCursorShape.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ui/NhekoCursorShape.h b/src/ui/NhekoCursorShape.h

index 6f6a2b82..b3a0a1ba 100644 --- a/src/ui/NhekoCursorShape.h +++ b/src/ui/NhekoCursorShape.h
@@ -11,20 +11,20 @@ class NhekoCursorShape : public QQuickItem { - Q_OBJECT + Q_OBJECT - Q_PROPERTY(Qt::CursorShape cursorShape READ cursorShape WRITE setCursorShape NOTIFY - cursorShapeChanged) + Q_PROPERTY( + Qt::CursorShape cursorShape READ cursorShape WRITE setCursorShape NOTIFY cursorShapeChanged) public: - explicit NhekoCursorShape(QQuickItem *parent = 0); + explicit NhekoCursorShape(QQuickItem *parent = 0); private: - Qt::CursorShape cursorShape() const; - void setCursorShape(Qt::CursorShape cursorShape); + Qt::CursorShape cursorShape() const; + void setCursorShape(Qt::CursorShape cursorShape); - Qt::CursorShape currentShape_; + Qt::CursorShape currentShape_; signals: - void cursorShapeChanged(); + void cursorShapeChanged(); };