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;
|
||||
|
||||
public:
|
||||
virtual ~UsermodeSelectionPanel() { }
|
||||
virtual ~UsermodeSelectionPanel() throw() { }
|
||||
UsermodeSelectionPanel( wxWindow* parent, bool isFirstTime = true );
|
||||
|
||||
void Apply();
|
||||
|
@ -87,7 +87,7 @@ namespace Panels
|
|||
wxComboBox* m_picker;
|
||||
|
||||
public:
|
||||
virtual ~LanguageSelectionPanel() { }
|
||||
virtual ~LanguageSelectionPanel() throw() { }
|
||||
LanguageSelectionPanel( wxWindow* parent );
|
||||
|
||||
void Apply();
|
||||
|
@ -292,7 +292,7 @@ namespace Panels
|
|||
|
||||
public:
|
||||
DirPickerPanel( wxWindow* parent, FoldersEnum_t folderid, const wxString& label, const wxString& dialogLabel );
|
||||
virtual ~DirPickerPanel() { }
|
||||
virtual ~DirPickerPanel() throw() { }
|
||||
|
||||
void Apply();
|
||||
void OnSettingsChanged();
|
||||
|
|
Loading…
Reference in New Issue