]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/panels/panel.h
Add clang-format and format code as in Frameworks
[dolphin.git] / src / panels / panel.h
index 5932ae6af5eea8409e7515a6fc884853b39b8dfa..5f1fabb4a7199f2df7097271df0161fd260393fd 100644 (file)
@@ -22,7 +22,7 @@ class Panel : public QWidget
     Q_OBJECT
 
 public:
-    explicit Panel(QWidgetparent = 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