This is an automatically generated mail from the syncmail system.  Do not reply 
directly to this email.  Further discussion should take place on the hackers 
list: [EMAIL PROTECTED]

Update of /cvsroot/perl-win32-gui/Win32-GUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24505

Modified Files:
        CHANGELOG ListView.xs MANIFEST Makefile.PL 
Log Message:
Re-organisation and bug fixes to BitmapInline

Index: CHANGELOG
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/CHANGELOG,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -d -r1.128 -r1.129
*** CHANGELOG   30 Jul 2007 22:04:49 -0000      1.128
--- CHANGELOG   13 Jan 2008 11:42:57 -0000      1.129
***************
*** 6,9 ****
--- 6,18 ----
  Win32-GUI ChangeLog
  ===================
+ + [Robert May] : 13 January 2008 -  Bug fixes/code re-org for BitmapInline
+     - BitmapInline.pm - move to its own subdirectory.
+     - Makefile.PL - change to reflect BitmapInline.pm move.
+     --- Win32::GUI::BitmapInline ---
+     - use a writable temporary directory instead of the current directory
+       (Tracker: 1586643)
+     - make it threadsafe
+     - add Makefile.PL and tests
+ 
  + [Robert May] : 30 July 2007 -  Bug Fixes
      - build_tools/updateRC, Makefile - fix problem with GUI.rc being readonly

Index: ListView.xs
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/ListView.xs,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** ListView.xs 15 Jul 2007 18:52:38 -0000      1.14
--- ListView.xs 13 Jan 2008 11:42:57 -0000      1.15
***************
*** 1975,1979 ****
      
###########################################################################
      # (@)METHOD:SelectedItems()
!     # Retuns an array containing the zero-based indexes of selected items.
  void
  SelectedItems(handle)
--- 1975,1980 ----
      
###########################################################################
      # (@)METHOD:SelectedItems()
!     # Returns an array containing the zero-based indexes of selected items, or
!     # an empty list if no items are selected.
  void
  SelectedItems(handle)
***************
*** 1995,2001 ****
              index = ListView_GetNextItem(handle, index, LVNI_SELECTED);
          }
!         XSRETURN(scount);
      } else {
!         XSRETURN_UNDEF;
      }
  
--- 1996,2002 ----
              index = ListView_GetNextItem(handle, index, LVNI_SELECTED);
          }
!         XSRETURN(tcount);
      } else {
!         XSRETURN_EMPTY;
      }
  

Index: Makefile.PL
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Makefile.PL,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** Makefile.PL 30 Jul 2007 22:04:49 -0000      1.25
--- Makefile.PL 13 Jan 2008 11:42:57 -0000      1.26
***************
*** 212,216 ****
      PM              => {
                           'GUI.pm'          => '$(INST_LIBDIR)/GUI.pm',
-                          'BitmapInline.pm' => 
'$(INST_LIBDIR)/GUI/BitmapInline.pm',
                           'GridLayout.pm'   => 
'$(INST_LIBDIR)/GUI/GridLayout.pm',
                        },
--- 212,215 ----

Index: MANIFEST
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/MANIFEST,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** MANIFEST    5 Nov 2006 20:04:49 -0000       1.21
--- MANIFEST    13 Jan 2008 11:42:57 -0000      1.22
***************
*** 1,5 ****
  Animation.xs
  Bitmap.xs
- BitmapInline.pm
  BUGS
  build_tools/BuildTools.pm
--- 1,4 ----
***************
*** 171,174 ****
--- 170,186 ----
  Win32-GUI-AxWindow/TODO
  Win32-GUI-AxWindow/TYPEMAP
+ Win32-GUI-BitmapInline/BitmapInline.pm
+ Win32-GUI-BitmapInline/Makefile.PL
+ Win32-GUI-BitmapInline/t/01_load.t
+ Win32-GUI-BitmapInline/t/02_public_api.t
+ Win32-GUI-BitmapInline/t/03_inline.t
+ Win32-GUI-BitmapInline/t/04_new.t
+ Win32-GUI-BitmapInline/t/05_newCursor.t
+ Win32-GUI-BitmapInline/t/06_newIcon.t
+ Win32-GUI-BitmapInline/t/98_pod.t
+ Win32-GUI-BitmapInline/t/99_pod_coverage.t
+ Win32-GUI-BitmapInline/t/test.bmp
+ Win32-GUI-BitmapInline/t/test.cur
+ Win32-GUI-BitmapInline/t/test.ico
  Win32-GUI-Constants/Changes
  Win32-GUI-Constants/Constants.PL
***************
*** 344,347 ****
--- 356,360 ----
  Win32-GUI-ReleaseNotes/RN_1_04.pod
  Win32-GUI-ReleaseNotes/RN_1_05.pod
+ Win32-GUI-ReleaseNotes/RN_1_06.pod
  Win32-GUI-ReleaseNotes/t/98_pod.t
  Win32-GUI-Scintilla/Changes
***************
*** 367,369 ****
  Win32-GUI-Scintilla/Typemap
  Window.xs
- META.yml                                 Module meta-data (added by MakeMaker)
--- 380,381 ----


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Perl-win32-gui-cvscommit mailing list
Perl-win32-gui-cvscommit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-cvscommit
http://perl-win32-gui.sourceforge.net/

Reply via email to