Replace tabs with spaces

This commit is contained in:
Maarten Bent
2020-12-22 19:04:16 +01:00
parent 32a0c57f7a
commit a530d645d1
23 changed files with 159 additions and 161 deletions

View File

@@ -222,16 +222,16 @@ bool wxMask::Create( const wxBitmap& bitmap )
wxBitmap wxMask::GetBitmap() const
{
wxBitmap bitmap;
wxBitmap bitmap;
if (m_bitmap)
{
bitmap.SetBitmap( m_bitmap );
bitmap.SetWidth( m_width );
bitmap.SetHeight( m_height );
}
if (m_bitmap)
{
bitmap.SetBitmap( m_bitmap );
bitmap.SetWidth( m_width );
bitmap.SetHeight( m_height );
}
return bitmap;
return bitmap;
}