┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kitemviews/private/kitemlistrubberband.h
diff options
context:
space:
mode:
authorSerg Podtynnyi <[email protected]>2023-02-04 00:14:53 +0700
committerSerg Podtynnyi <[email protected]>2023-02-05 12:45:38 +0700
commit38c34eeca315c7be58e65d4d3fb72aaf7b866719 (patch)
tree886e53f20c9c43edc3eb7fe04789716a9bc98ebe /src/kitemviews/private/kitemlistrubberband.h
parentffff8af851e3a386c44438337779d0ce7ca98a61 (diff)
Add clang-format and format code as in Frameworks
Diffstat (limited to 'src/kitemviews/private/kitemlistrubberband.h')
-rw-r--r--src/kitemviews/private/kitemlistrubberband.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/kitemviews/private/kitemlistrubberband.h b/src/kitemviews/private/kitemlistrubberband.h
index 11febcf7e..fd1416b56 100644
--- a/src/kitemviews/private/kitemlistrubberband.h
+++ b/src/kitemviews/private/kitemlistrubberband.h
@@ -21,13 +21,13 @@ class DOLPHIN_EXPORT KItemListRubberBand : public QObject
Q_PROPERTY(QPointF endPosition MEMBER m_endPos READ endPosition WRITE setEndPosition)
public:
- explicit KItemListRubberBand(QObject* parent = nullptr);
+ explicit KItemListRubberBand(QObject *parent = nullptr);
~KItemListRubberBand() override;
- void setStartPosition(const QPointF& pos);
+ void setStartPosition(const QPointF &pos);
QPointF startPosition() const;
- void setEndPosition(const QPointF& pos);
+ void setEndPosition(const QPointF &pos);
QPointF endPosition() const;
void setActive(bool active);
@@ -35,8 +35,8 @@ public:
Q_SIGNALS:
void activationChanged(bool active);
- void startPositionChanged(const QPointF& current, const QPointF& previous);
- void endPositionChanged(const QPointF& current, const QPointF& previous);
+ void startPositionChanged(const QPointF &current, const QPointF &previous);
+ void endPositionChanged(const QPointF &current, const QPointF &previous);
private:
bool m_active;
@@ -45,5 +45,3 @@ private:
};
#endif
-
-