mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-19 17:02:15 -07:00
add override specifiers
it wouldn't compile otherwise
This commit is contained in:
parent
e7585271fb
commit
90564acaee
1 changed files with 4 additions and 4 deletions
|
|
@ -66,8 +66,8 @@ private slots:
|
||||||
void resizeToZoneContents();
|
void resizeToZoneContents();
|
||||||
void handleScrollBarChange(int value);
|
void handleScrollBarChange(int value);
|
||||||
void zoneDeleted();
|
void zoneDeleted();
|
||||||
void moveEvent(QGraphicsSceneMoveEvent * /* event */);
|
void moveEvent(QGraphicsSceneMoveEvent * /* event */) override;
|
||||||
void resizeEvent(QGraphicsSceneResizeEvent * /* event */);
|
void resizeEvent(QGraphicsSceneResizeEvent * /* event */) override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ZoneViewWidget(Player *_player,
|
ZoneViewWidget(Player *_player,
|
||||||
|
|
@ -87,8 +87,8 @@ public:
|
||||||
void retranslateUi();
|
void retranslateUi();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void closeEvent(QCloseEvent *event);
|
void closeEvent(QCloseEvent *event) override;
|
||||||
void initStyleOption(QStyleOption *option) const;
|
void initStyleOption(QStyleOption *option) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue