- added resolution option to JPEG image handler (Jeff Burton)
 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
 - wxGenericDirCtrl now accepts multiple wildcards
+- added focus event forwarding to wxGrid (Peter Laufenberg)
+- fixed scrollbar problem in wxGrid (not showing scrollbars
+  when sizing smaller) (Shane Harper)
 
 wxMSW:
 
 
 /pack/cvsroots/wxwindows/wxWindows/src/generic/dirctrlg.cpp,v  <--  dirctrlg.cpp
 new revision: 1.81; previous revision: 1.80
 
+33. Apply patch [ 873021 ] Bug fix for MSW wxComboBox
+
+wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
+should now pass the correct value even if the handler for
+wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection.
+
+Checking in src/msw/combobox.cpp;
+/pack/cvsroots/wxwindows/wxWindows/src/msw/combobox.cpp,v  <--  combobox.cpp
+new revision: 1.72; previous revision: 1.71
+done
+
 
 TODO for 2.4 (items that are not backports)
 ===========================================
 
     int x, y;
     GetViewStart( &x, &y );
 
-    // maybe we don't need scrollbars at all?
-    //
-    // also adjust the position to be valid for the new scroll rangs
-    if ( w <= cw )
-    {
-        w = x = 0;
-    }
-    else
-    {
+    // ensure the position is valid for the new scroll ranges
         if ( x >= w )
-            x = w - 1;
-    }
-
-    if ( h <= ch )
-    {
-        h = y = 0;
-    }
-    else
-    {
+        x = wxMax( w - 1, 0 );
         if ( y >= h )
-            y = h - 1;
-    }
+        y = wxMax( h - 1, 0 );
 
     // do set scrollbar parameters
     SetScrollbars( GRID_SCROLL_LINE_X, GRID_SCROLL_LINE_Y,