DolphinQt2: Add missing override specifiers

This commit is contained in:
Lioncash
2018-05-17 16:15:59 -04:00
parent f51eba9e79
commit dfa1126946
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ class AspectRatioWidget : public QWidget
Q_OBJECT
public:
AspectRatioWidget(QWidget* widget, float width, float height, QWidget* parent = nullptr);
void resizeEvent(QResizeEvent* event);
void resizeEvent(QResizeEvent* event) override;
private:
QBoxLayout* m_layout;