Update of /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-ReleaseNotes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14718/Win32-GUI-ReleaseNotes
Modified Files:
RN_1_06.pod
Log Message:
Bring Changelog and Release Notes up to date
Index: RN_1_06.pod
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-ReleaseNotes/RN_1_06.pod,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** RN_1_06.pod 13 Jan 2008 21:41:46 -0000 1.6
--- RN_1_06.pod 31 Jan 2008 00:42:11 -0000 1.7
***************
*** 17,20 ****
--- 17,23 ----
been made to enable correct building with the new perl 5.10.0
+ Please note that this is intended to be the last release that is
+ compatible with the Perl 5.6 series.
+
=head2 New Features
***************
*** 38,42 ****
now functional on MDI child windows.
! =item Confusion with GetParent() and Treeview windows
The GetParent() method usually gets the parent window, but for
--- 41,45 ----
now functional on MDI child windows.
! =item Confusion with GetParent() and TreeView windows
The GetParent() method usually gets the parent window, but for
***************
*** 127,130 ****
--- 130,142 ----
}
+ =item TreeView::GetItem may now return an empty list
+
+ Win32::GUI::TreeView::GetItem (and Win32::GUI::TreeView::ItemInfo)
+ used to return C<undef> when asked about a non-existing
+ item. In now returns an empty list to better support
+ things like:
+
+ my $node_info = $treeview->GetItem($item);
+
=item Crash when destroying a window during a callback
***************
*** 171,174 ****
--- 183,194 ----
race-condition should also be fixed.
+ =item Toolbar Addbitmap can't be called multiple times
+
+ The Win32::GUI::Toolbar::AddBitmap() method failed when called
+ a second time, reporting that you couldn't use it when an
+ imagelist was already assigned (regardless of whether you had
+ assigned an imagelist or not). It may now be called more
+ than once to add individual bitmaps to the toolbar.
+
=back
|