Skip to content

Commit

Permalink
Fix override warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Lymphatus committed Jun 21, 2023
1 parent aaed844 commit 2d561a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/MainWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ private slots:
void updateFolderMap(QString baseFolder, int count);
CompressionOptions getCompressionOptions(QString rootFolder);
void clearCache();
void changeEvent(QEvent* event);
void changeEvent(QEvent* event) override;
};

#endif // MAINWINDOW_H
2 changes: 1 addition & 1 deletion src/dialogs/AboutDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private slots:
private:
Ui::AboutDialog* ui;

void changeEvent(QEvent* event);
void changeEvent(QEvent* event) override;
};

#endif // ABOUTDIALOG_H
2 changes: 1 addition & 1 deletion src/dialogs/PreferencesDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private slots:
void loadPreferences();
void loadLanguages();
void loadThemes();
void changeEvent(QEvent* event);
void changeEvent(QEvent* event) override;
};

#endif // PREFERENCESDIALOG_H

0 comments on commit 2d561a8

Please sign in to comment.