PCSX2-GUI: Undo formatting

This commit is contained in:
RedDevilus 2021-08-08 21:49:12 +02:00 committed by lightningterror
parent 88c2e9ea48
commit 11c346ab02
3 changed files with 5 additions and 4 deletions

View File

@ -1040,10 +1040,10 @@ wxSize wxSizer::GetMinSize()
return ret; return ret;
} }
void wxSizer::DoSetMinSize(int width, int height) void wxSizer::DoSetMinSize( int width, int height )
{ {
m_minSize.x = width; m_minSize.x = width;
m_minSize.y = height; m_minSize.y = height;
} }
bool wxSizer::DoSetItemMinSize( wxWindow *window, int width, int height ) bool wxSizer::DoSetItemMinSize( wxWindow *window, int width, int height )

View File

@ -257,6 +257,7 @@ void operator+=(wxWindow &target, WinType &src)
return; return;
*target.GetSizer() += src; *target.GetSizer() += src;
} }
template <typename WinType> template <typename WinType>
void operator+=(wxWindow &target, const pxWindowAndFlags<WinType> &src) void operator+=(wxWindow &target, const pxWindowAndFlags<WinType> &src)
{ {

View File

@ -228,5 +228,5 @@ void FirstTimeWizard::OnPageChanging( wxWizardEvent& evt )
void FirstTimeWizard::OnPageChanged( wxWizardEvent& evt ) void FirstTimeWizard::OnPageChanged( wxWizardEvent& evt )
{ {
if( ((sptr)evt.GetPage() == (sptr)&m_page_bios) ) if( ((sptr)evt.GetPage() == (sptr)&m_page_bios) )
m_panel_BiosSel.OnShown(); m_panel_BiosSel.OnShown();
} }