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,7 +1040,7 @@ wxSize wxSizer::GetMinSize()
return ret;
}
void wxSizer::DoSetMinSize(int width, int height)
void wxSizer::DoSetMinSize( int width, int height )
{
m_minSize.x = width;
m_minSize.y = height;

View File

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