+
+24. Fix SetScrollbars bug. You know the one :-)
+
+Checking in src/common/wincmn.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/common/wincmn.cpp,v <-- wincmn.cpp
+new revision: 1.129; previous revision: 1.128
+done
+Checking in src/generic/scrlwing.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/generic/scrlwing.cpp,v <-- scrlwing.cpp
+new revision: 1.35; previous revision: 1.34
+done
+Checking in src/gtk/scrolwin.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/gtk/scrolwin.cpp,v <-- scrolwin.cpp
+new revision: 1.27; previous revision: 1.26
+done
+
+
+26. Fix Unicode + .wxr
+
+Using an #if wxUSE_UNICODE in include/wx/wxexpr.h, safer for
+binary compatibility.
+
+Checking in include/wx/resource.h;
+/pack/cvsroots/wxwindows/wxWindows/include/wx/resource.h,v <-- resource.h
+new revision: 1.18; previous revision: 1.17
+done
+Checking in include/wx/wxexpr.h;
+/pack/cvsroots/wxwindows/wxWindows/include/wx/wxexpr.h,v <-- wxexpr.h
+new revision: 1.19; previous revision: 1.18
+done
+cvs diff: [23:38:56] waiting for cvs's lock in /pack/cvsroots/wxwindows/wxWindows/include/wx
+Checking in samples/resource/resource.cpp;
+/pack/cvsroots/wxwindows/wxWindows/samples/resource/resource.cpp,v <-- resource.cpp
+new revision: 1.14; previous revision: 1.13
+done
+cvs diff: [23:39:00] waiting for cvs's lock in /pack/cvsroots/wxwindows/wxWindows/samples/resource
+Checking in src/common/resource.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/common/resource.cpp,v <-- resource.cpp
+new revision: 1.85; previous revision: 1.84
+done
+Checking in src/common/wxexpr.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/common/wxexpr.cpp,v <-- wxexpr.cpp
+new revision: 1.27; previous revision: 1.26
+done
+
+
+27. Fix assert (and crash in debug) in wxFileConfigGroup::DeleteSubgroupByName
+
+Checking in src/common/fileconf.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/common/fileconf.cpp,v <-- fileconf.cpp
+new revision: 1.93; previous revision: 1.92
+done
+
+28. Set orientation for scrolbar events
+
+Checking in src/msw/scrolbar.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/msw/scrolbar.cpp,v <-- scrolbar.cpp
+new revision: 1.24; previous revision: 1.23
+done
+
+29. Patch 664399: wxButton default size should not be adjusted
+ (wxUniv), cures overlapping buttons on e.g. wxWizard sample.
+
+Index: src/univ/button.cpp
+===================================================================
+RCS file: /pack/cvsroots/wxwindows/wxWindows/src/univ/button.cpp,v
+retrieving revision 1.15
+diff -r1.15 button.cpp
+116,117c116,117
+< s_sizeBtn.x = 8*dc.GetCharWidth();
+< s_sizeBtn.y = (11*dc.GetCharHeight())/10 + 2;
+---
+> s_sizeBtn.x = dc.GetCharWidth()*10 + 2;
+> s_sizeBtn.y = dc.GetCharHeight()*11/10 + 2;
+139,149c139,140
+< // for compatibility with other ports, the buttons default size is never
+< // less than the standard one, but not when display not PDAs.
+< if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA)
+< {
+< if ( !(GetWindowStyle() & wxBU_EXACTFIT) )
+< {
+< wxSize szDef = GetDefaultSize();
+< if ( width < szDef.x )
+< width = szDef.x;
+< }
+< }
+---
+> // The default size should not be adjusted, so the code is moved into the
+> // renderer. This is conceptual wrong but currently the only solution
+
+Index: src/univ/themes/win32.cpp
+===================================================================
+RCS file: /pack/cvsroots/wxwindows/wxWindows/src/univ/themes/win32.cpp,v
+retrieving revision 1.55
+diff -r1.55 win32.cpp
+3989a3990,4001
+> // for compatibility with other ports, the buttons default size is never
+> // less than the standard one, but not when display not PDAs.
+> if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA)
+> {
+> if ( !(window->GetWindowStyle() & wxBU_EXACTFIT) )
+> {
+> wxSize szDef = wxButton::GetDefaultSize();
+> if ( size->x < szDef.x )
+> size->x = szDef.x;
+> }
+> }
+>
+
+
+30. [wxMotif] Coloured stipples, don't use stipples in DoDrawText
+
+Checking in src/motif/dcclient.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/motif/dcclient.cpp,v <-- dcclient.cpp
+new revision: 1.47; previous revision: 1.46
+done
+