mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 22:57:58 -05:00
Add override
keyword through the code.
This was automated using `clang-modernize`.
This commit is contained in:
@ -90,10 +90,10 @@ public:
|
||||
parent_ = parent;
|
||||
}
|
||||
|
||||
void paintEvent(QPaintEvent* ev)
|
||||
void paintEvent(QPaintEvent* ev) override
|
||||
{
|
||||
}
|
||||
void resizeEvent(QResizeEvent* ev) {
|
||||
void resizeEvent(QResizeEvent* ev) override {
|
||||
parent_->SetClientAreaWidth(size().width());
|
||||
parent_->SetClientAreaHeight(size().height());
|
||||
}
|
||||
|
Reference in New Issue
Block a user