fixed unreachable code warning (MSVC6)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Dimitri Schoolwerth 2005-01-24 14:44:10 +00:00
parent 53a26bf774
commit 0f770734ae

View File

@ -881,10 +881,9 @@ WXHANDLE wxNotebook::QueryBgBitmap(wxWindow *win)
return (WXHANDLE)c;
}
else // we are asked to create the brush
{
return (WXHANDLE)::CreatePatternBrush(hBmp);
}
// else we are asked to create the brush
return (WXHANDLE)::CreatePatternBrush(hBmp);
}
void wxNotebook::UpdateBgBrush()