summaryrefslogtreecommitdiffstats
path: root/src/controllers/dlgprefcontroller.h
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-05-22 12:43:57 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-05-22 12:43:57 +0200
commitba464ef41513a528dfa7da32cef39eef57307cc3 (patch)
treec182101995f87c35eb132e1137bf5a2bc6b4a5a8 /src/controllers/dlgprefcontroller.h
parent2091896785e359eec3dc3c42381519ab01397e58 (diff)
preferences: Fix inconsistent missing override warnings
Diffstat (limited to 'src/controllers/dlgprefcontroller.h')
-rw-r--r--src/controllers/dlgprefcontroller.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controllers/dlgprefcontroller.h b/src/controllers/dlgprefcontroller.h
index 17e0d2c834..c50bffe6a3 100644
--- a/src/controllers/dlgprefcontroller.h
+++ b/src/controllers/dlgprefcontroller.h
@@ -33,11 +33,11 @@ class DlgPrefController : public DlgPreferencePage {
public slots:
/// Called when the preference dialog (not this page) is shown to the user.
- void slotUpdate();
+ void slotUpdate() override;
/// Called when the user clicks the global "Apply" button.
- void slotApply();
+ void slotApply() override;
/// Called when the user clicks the global "Reset to Defaults" button.
- void slotResetToDefaults();
+ void slotResetToDefaults() override;
QUrl helpUrl() const override;