Rename profiler parameter names

Rename the parameter names of the overriden methods to match
the qt names.
This commit is contained in:
Vitor Kiguchi 2020-08-15 11:34:56 -03:00
parent 981a4611a4
commit 7e19ed1309
2 changed files with 40 additions and 40 deletions

View file

@ -17,8 +17,8 @@ public:
QAction* toggleViewAction();
protected:
void showEvent(QShowEvent* ev) override;
void hideEvent(QHideEvent* ev) override;
void showEvent(QShowEvent* event) override;
void hideEvent(QHideEvent* event) override;
private:
QAction* toggle_view_action = nullptr;