mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-19 02:36:27 +01: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"
|
#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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user