X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/6072005ddce81b456fdcf2e77d5156a1d86f3686..e112fc50e0577449990746e1718b79e54748b61f:/src/panels/panel.h diff --git a/src/panels/panel.h b/src/panels/panel.h index 3a61a41f0..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,12 +33,12 @@ 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; -public slots: +public Q_SLOTS: /** * This is invoked every time the folder being displayed in the * active Dolphin view changes. @@ -62,7 +62,7 @@ protected: private: QUrl m_url; - QList m_customContextMenuActions; + QList m_customContextMenuActions; }; #endif // PANEL_H