mirror of https://github.com/PCSX2/pcsx2.git
And, as usual, Gcc makes me want to throw things...
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2304 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
cb066785cf
commit
9736b4b854
|
@ -71,7 +71,7 @@ namespace Panels
|
||||||
pxRadioPanel* m_radio_UserMode;
|
pxRadioPanel* m_radio_UserMode;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual ~UsermodeSelectionPanel() { }
|
virtual ~UsermodeSelectionPanel() throw() { }
|
||||||
UsermodeSelectionPanel( wxWindow* parent, bool isFirstTime = true );
|
UsermodeSelectionPanel( wxWindow* parent, bool isFirstTime = true );
|
||||||
|
|
||||||
void Apply();
|
void Apply();
|
||||||
|
@ -87,7 +87,7 @@ namespace Panels
|
||||||
wxComboBox* m_picker;
|
wxComboBox* m_picker;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual ~LanguageSelectionPanel() { }
|
virtual ~LanguageSelectionPanel() throw() { }
|
||||||
LanguageSelectionPanel( wxWindow* parent );
|
LanguageSelectionPanel( wxWindow* parent );
|
||||||
|
|
||||||
void Apply();
|
void Apply();
|
||||||
|
@ -292,7 +292,7 @@ namespace Panels
|
||||||
|
|
||||||
public:
|
public:
|
||||||
DirPickerPanel( wxWindow* parent, FoldersEnum_t folderid, const wxString& label, const wxString& dialogLabel );
|
DirPickerPanel( wxWindow* parent, FoldersEnum_t folderid, const wxString& label, const wxString& dialogLabel );
|
||||||
virtual ~DirPickerPanel() { }
|
virtual ~DirPickerPanel() throw() { }
|
||||||
|
|
||||||
void Apply();
|
void Apply();
|
||||||
void OnSettingsChanged();
|
void OnSettingsChanged();
|
||||||
|
|
Loading…
Reference in New Issue