aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/addon')
-rw-r--r--src/modules/addon/AddonManagementDialog.h2
-rw-r--r--src/modules/addon/PackAddonDialog.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/addon/AddonManagementDialog.h b/src/modules/addon/AddonManagementDialog.h
index b2181c502..86abd484a 100644
--- a/src/modules/addon/AddonManagementDialog.h
+++ b/src/modules/addon/AddonManagementDialog.h
@@ -84,7 +84,7 @@ public:
protected:
void fillListView();
- virtual void closeEvent(QCloseEvent * e);
+ void closeEvent(QCloseEvent * e) override;
protected slots:
void currentChanged(QListWidgetItem * i, QListWidgetItem *);
void closeClicked();
diff --git a/src/modules/addon/PackAddonDialog.h b/src/modules/addon/PackAddonDialog.h
index d6ddec1f1..4464f2da0 100644
--- a/src/modules/addon/PackAddonDialog.h
+++ b/src/modules/addon/PackAddonDialog.h
@@ -92,7 +92,7 @@ protected:
* \brief Runs the packAddon() function and closes the wizard
* \return void
*/
- virtual void accept();
+ void accept() override;
/**
* \brief Creates the addon package
@@ -201,7 +201,7 @@ protected:
* \brief Perform initial tasks before showing the widget
* \return void
*/
- virtual void initializePage();
+ void initializePage() override;
};
/**
@@ -232,7 +232,7 @@ protected:
* \brief Perform initial tasks before showing the widget
* \return void
*/
- virtual void initializePage();
+ void initializePage() override;
};
class PackAddonSummaryFilesWidget : public QDialog
@@ -249,10 +249,10 @@ protected:
public:
void setPath(QString & szPath) { m_szPath = szPath; };
protected:
- virtual void showEvent(QShowEvent *);
+ void showEvent(QShowEvent *) override;
protected slots:
- virtual void accept();
- virtual void reject();
+ void accept() override;
+ void reject() override;
};
#endif //!_PACKADDONDIALOG_H_