1. fixed (?) blitting bitmaps with mask

2. fixed wxWindowBase compilation (oops)
3. fixed kbd handling in wxScrolledWindow under MSW


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-01-26 00:01:27 +00:00
parent d80cd92ae2
commit a58a12e9b7
5 changed files with 406 additions and 398 deletions

View File

@@ -748,7 +748,7 @@ bool wxWindowBase::TransferDataToWindow()
if ( recurse )
{
if ( !child->TransferToWindow() )
if ( !child->TransferDataToWindow() )
{
// warning already given
return FALSE;
@@ -780,7 +780,7 @@ bool wxWindowBase::TransferDataFromWindow()
if ( recurse )
{
if ( !child->TransferFromWindow() )
if ( !child->TransferDataFromWindow() )
{
// warning already given
return FALSE;