2010-05-15 09:16 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbziparc/hbziparc.prg
    ! Fixed regression in HB_ZIPFILE() to make it work in 
      "append" mode even when the .zip didn't exist.
This commit is contained in:
Viktor Szakats
2010-05-15 07:16:49 +00:00
parent 03c87d0ace
commit 0f68ed9c65
2 changed files with 7 additions and 2 deletions

View File

@@ -17,11 +17,16 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-05-15 09:16 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbziparc/hbziparc.prg
! Fixed regression in HB_ZIPFILE() to make it work in
"append" mode even when the .zip didn't exist.
2010-15:14 17:40 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/hbqt_hbqplaintextedit.cpp
* contrib/hbqt/hbqt_hbqplaintextedit.h
* contrib/hbide/ideedit.prg
! Fixed: "copy" operation on stream selection was returning
! Fixed: "copy" operation on stream selection was returning
wrong text.
2010-05-15 00:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

View File

@@ -306,7 +306,7 @@ FUNCTION hb_ZipFile( cFileName,;
FErase( cFileName )
ENDIF
IF !Empty( hZip := hb_ZipOpen( cFileName, iif( lOverwrite, NIL, HB_ZIP_OPEN_ADDINZIP ) ) )
IF !Empty( hZip := hb_ZipOpen( cFileName, iif( ! lOverwrite .AND. hb_FileExists( cFileName ), HB_ZIP_OPEN_ADDINZIP, NIL ) ) )
DEFAULT acFiles TO {}
DEFAULT acExclude TO {}