┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/panel.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/panels/panel.h
parentffff8af851e3a386c44438337779d0ce7ca98a61 (diff)
Add clang-format and format code as in Frameworks
Diffstat (limited to 'src/panels/panel.h')
-rw-r--r--src/panels/panel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/panels/panel.h b/src/panels/panel.h
index 5932ae6af..5f1fabb4a 100644
--- a/src/panels/panel.h
+++ b/src/panels/panel.h
@@ -22,7 +22,7 @@ class Panel : public QWidget
Q_OBJECT
public:
- explicit Panel(QWidget* parent = nullptr);
+ explicit Panel(QWidget *parent = nullptr);
~Panel() override;
/** Returns the current set URL of the active Dolphin view. */
@@ -33,8 +33,8 @@ public:
* context menu actions. Allows an application to apply custom actions to
* the panel.
*/
- void setCustomContextMenuActions(const QList<QAction*>& actions);
- QList<QAction*> customContextMenuActions() const;
+ void setCustomContextMenuActions(const QList<QAction *> &actions);
+ QList<QAction *> customContextMenuActions() const;
QSize sizeHint() const override;
@@ -62,7 +62,7 @@ protected:
private:
QUrl m_url;
- QList<QAction*> m_customContextMenuActions;
+ QList<QAction *> m_customContextMenuActions;
};
#endif // PANEL_H