Fix warning: 'dropEvent' overrides a member function but is not marked 'override'

This commit is contained in:
Dmytro Maslenko
2025-07-25 20:07:27 -07:00
committed by Alejandro Martinez
parent 68fb3649e2
commit e15701d05b

View File

@@ -72,10 +72,8 @@ class ChartTreeView : public QTreeWidget
void itemMoved(QTreeWidgetItem* item, int previous, int actual);
protected:
void dropEvent(QDropEvent* event);
void dropEvent(QDropEvent* event) override;
Context *context;
};
#endif