mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 04:24:56 +00:00
DSPRegisterView: Mark classes as final
These aren't intended to be extended upon.
This commit is contained in:
parent
66fd347d2e
commit
2781ae5af1
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue