mirror of
https://github.com/huderlem/porymap.git
synced 2026-08-20 15:46:50 -05:00
silence deprecation warnings
This commit is contained in:
@@ -9,7 +9,7 @@ class NoScrollSpinBox : public QSpinBox
|
||||
|
||||
public:
|
||||
explicit NoScrollSpinBox(QWidget *parent = nullptr);
|
||||
void wheelEvent(QWheelEvent *event);
|
||||
void wheelEvent(QWheelEvent *event) override;
|
||||
void focusOutEvent(QFocusEvent *event) override;
|
||||
|
||||
unsigned getActionId();
|
||||
|
||||
@@ -10,7 +10,7 @@ class OverlayItem {
|
||||
public:
|
||||
OverlayItem() {}
|
||||
virtual ~OverlayItem() {};
|
||||
virtual void render(QPainter *painter) {};
|
||||
virtual void render(QPainter *) {};
|
||||
};
|
||||
|
||||
class OverlayText : public OverlayItem {
|
||||
|
||||
Reference in New Issue
Block a user