X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/f65b0899c3666561cafac14f67ab0bb8a5bfa00a..refs/heads/master:/src/panels/panel.h 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& actions); - QList customContextMenuActions() const; + void setCustomContextMenuActions(const QList &actions); + QList customContextMenuActions() const; QSize sizeHint() const override; @@ -62,7 +62,7 @@ protected: private: QUrl m_url; - QList m_customContextMenuActions; + QList m_customContextMenuActions; }; #endif // PANEL_H