Updated readme and manual version and date

Some clarifications of wxBORDER_THEME
Don't use wxBORDER_DOUBLE in GTK+/Univ



git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@48796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2007-09-19 13:39:45 +00:00
parent b460fd01ab
commit 648955779b
5 changed files with 17 additions and 10 deletions

View File

@@ -412,15 +412,18 @@ void wxStdRenderer::DrawBorder(wxDC& dc,
switch ( border )
{
case wxBORDER_THEME:
case wxBORDER_SUNKEN:
DrawSunkenBorder(dc, &rect);
break;
// wxBORDER_DOUBLE is no longer supported since wxBORDER_THEME takes on the same value
#if 0
case wxBORDER_DOUBLE:
DrawAntiSunkenBorder(dc, &rect);
DrawExtraBorder(dc, &rect);
break;
#endif
case wxBORDER_STATIC:
DrawStaticBorder(dc, &rect);
break;