MemcardManager: Minor cleanup of header code

This commit is contained in:
Lioncash
2015-08-29 05:17:33 -04:00
parent 0f3e4c50e1
commit d58550e874
2 changed files with 7 additions and 13 deletions

View File

@ -17,19 +17,11 @@ class wxFileDirPickerEvent;
class wxFilePickerCtrl;
class wxStaticText;
#undef MEMCARD_MANAGER_STYLE
#define MEMCARD_MANAGER_STYLE wxCAPTION | wxSYSTEM_MENU | wxDIALOG_NO_PARENT | wxCLOSE_BOX | wxRESIZE_BORDER | wxMAXIMIZE_BOX
#define MEMCARDMAN_TITLE _trans("Memory Card Manager WARNING-Make backups before using, should be fixed but could mangle stuff!")
#define FIRSTPAGE 0
class CMemcardManager : public wxDialog
class CMemcardManager final : public wxDialog
{
public:
CMemcardManager(wxWindow *parent, wxWindowID id = wxID_ANY, const wxString& title = wxGetTranslation(MEMCARDMAN_TITLE),
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = MEMCARD_MANAGER_STYLE);
virtual ~CMemcardManager();
CMemcardManager(wxWindow* parent);
~CMemcardManager();
private:
DECLARE_EVENT_TABLE();