Update of /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-ReleaseNotes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7626/Win32-GUI-ReleaseNotes
Modified Files:
RN_1_06.pod
Log Message:
Update version of changed modules. Update Win32-GUI version to 1.05_90
Index: RN_1_06.pod
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-ReleaseNotes/RN_1_06.pod,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** RN_1_06.pod 31 Jan 2008 00:42:11 -0000 1.7
--- RN_1_06.pod 1 Feb 2008 13:33:22 -0000 1.8
***************
*** 117,121 ****
=item ListView BeginLabelEdit event
! The second arguement was being set incorrectly when the callback
was made. This is now fixed. (Tracker: 1706901)
--- 117,121 ----
=item ListView BeginLabelEdit event
! The second argument was being set incorrectly when the callback
was made. This is now fixed. (Tracker: 1706901)
***************
*** 137,141 ****
things like:
! my $node_info = $treeview->GetItem($item);
=item Crash when destroying a window during a callback
--- 137,141 ----
things like:
! my %node_info = $treeview->GetItem($item);
=item Crash when destroying a window during a callback
***************
*** 203,207 ****
The introduction of Win32::GUI::Constants in v1.04 means
that we now have access to a very large number of constants,
! so the current behaviour of Win32::GUI to export all
constants to the calling namespace by default is no longer
appropriate. So, a bare
--- 203,207 ----
The introduction of Win32::GUI::Constants in v1.04 means
that we now have access to a very large number of constants,
! so the v1.03 behaviour of Win32::GUI to export all
constants to the calling namespace by default is no longer
appropriate. So, a bare
***************
*** 253,257 ****
=item use the Win32::GUI::Constants namespace instead
! -addstyle => Win32::GUI::Constants::WS_BORDER(),
=item use any other namespace you fancy
--- 253,257 ----
=item use the Win32::GUI::Constants namespace instead
! -addstyle => Win32::GUI::Constants::WS_BORDER,
=item use any other namespace you fancy
***************
*** 259,263 ****
use Win32::GUI qw(-exportpkg => A::B -autoload);
...
! -addstyle => A::B::WS_BORDER(),
=item maintain compatibility of existing scripts
--- 259,263 ----
use Win32::GUI qw(-exportpkg => A::B -autoload);
...
! -addstyle => A::B::WS_BORDER,
=item maintain compatibility of existing scripts
|