┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/panel.h
diff options
context:
space:
mode:
authorKevin Funk <[email protected]>2017-11-20 23:25:06 +0100
committerKevin Funk <[email protected]>2017-11-20 23:25:48 +0100
commit464b13f3828e5cdd03438d0881c3a62c7cda6333 (patch)
tree724c10c4e06ac3030666f2604066b6cbcc83ffd0 /src/panels/panel.h
parent5bee1889e1682f1e7ffe55e49beaf4544eaf7157 (diff)
Modernize: Use override where possible
Also use override instead of Q_DECL_OVERRIDE
Diffstat (limited to 'src/panels/panel.h')
-rw-r--r--src/panels/panel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/panels/panel.h b/src/panels/panel.h
index d3460bf13..f706c3b82 100644
--- a/src/panels/panel.h
+++ b/src/panels/panel.h
@@ -36,7 +36,7 @@ class Panel : public QWidget
public:
explicit Panel(QWidget* parent = 0);
- virtual ~Panel();
+ ~Panel() override;
/** Returns the current set URL of the active Dolphin view. */
QUrl url() const;
@@ -49,7 +49,7 @@ public:
void setCustomContextMenuActions(const QList<QAction*>& actions);
QList<QAction*> customContextMenuActions() const;
- virtual QSize sizeHint() const Q_DECL_OVERRIDE;
+ QSize sizeHint() const override;
public slots:
/**