mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
DSPRegisterView: Mark classes as final
These aren't intended to be extended upon.
This commit is contained in:
parent
66fd347d2e
commit
2781ae5af1
@ -9,7 +9,7 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
class CDSPRegTable : public wxGridTableBase
|
||||
class CDSPRegTable final : public wxGridTableBase
|
||||
{
|
||||
public:
|
||||
CDSPRegTable() = default;
|
||||
@ -30,7 +30,7 @@ private:
|
||||
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
||||
};
|
||||
|
||||
class DSPRegisterView : public wxGrid
|
||||
class DSPRegisterView final : public wxGrid
|
||||
{
|
||||
public:
|
||||
DSPRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
|
||||
|
Loading…
Reference in New Issue
Block a user