DSPRegisterView: Mark classes as final

These aren't intended to be extended upon.
This commit is contained in:
Lioncash 2016-10-06 12:35:29 -04:00
parent 66fd347d2e
commit 2781ae5af1
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
#include "Common/CommonTypes.h" #include "Common/CommonTypes.h"
class CDSPRegTable : public wxGridTableBase class CDSPRegTable final : public wxGridTableBase
{ {
public: public:
CDSPRegTable() = default; CDSPRegTable() = default;
@ -30,7 +30,7 @@ private:
DECLARE_NO_COPY_CLASS(CDSPRegTable); DECLARE_NO_COPY_CLASS(CDSPRegTable);
}; };
class DSPRegisterView : public wxGrid class DSPRegisterView final : public wxGrid
{ {
public: public:
DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY); DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);