CResourceBrowser: Make use of override

This commit is contained in:
Lioncash 2020-07-03 12:33:19 -04:00
parent dd91aded21
commit 9e976606ff

View File

@ -58,7 +58,7 @@ class CResourceBrowser : public QWidget
public:
explicit CResourceBrowser(QWidget *pParent = nullptr);
~CResourceBrowser();
~CResourceBrowser() override;
void SetActiveDirectory(CVirtualDirectory *pDir);
void SelectResource(CResourceEntry *pEntry, bool ClearFiltersIfNecessary = false);
@ -78,7 +78,7 @@ public:
CAssetID ID = CAssetID());
// Interface
bool eventFilter(QObject *pWatched, QEvent *pEvent);
bool eventFilter(QObject* pWatched, QEvent* pEvent) override;
// Accessors
CResourceStore* CurrentStore() const { return mpStore; }