2009-06-24 20:37 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/vm/memvars.c
    - Deleted hb_fsCommit() as non CA-Cl*pper compatible.
      I'll let others decide what to do with this patch.

  * contrib/hbclipsm/date.c
    ! Changed hb_parnl() calls used to extract dates to hb_pardl().
This commit is contained in:
Viktor Szakats
2009-06-24 18:40:23 +00:00
parent fb52a61cc6
commit 2cca1f30b4
3 changed files with 10 additions and 3 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-24 20:37 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/vm/memvars.c
- Deleted hb_fsCommit() as non CA-Cl*pper compatible.
I'll let others decide what to do with this patch.
* contrib/hbclipsm/date.c
! Changed hb_parnl() calls used to extract dates to hb_pardl().
2009-06-24 08:40 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* harbour/contrib/hbqt/Makefile_gen
* harbour/contrib/hbqt/hbqt_qapplication.cpp

View File

@@ -67,7 +67,7 @@ HB_FUNC( MDY )
int iYearLen;
int iLen;
hb_dateDecode( hb_parnl( 1 ), &iYear, &iMonth, &iDay );
hb_dateDecode( hb_pardl( 1 ), &iYear, &iMonth, &iDay );
hb_dateFormat( hb_pardsbuff( szDate, 1 ), szFormatted, "MM/DD/YYYY" );
iLen = strlen( hb_dateCMonth( iMonth ) );
@@ -97,7 +97,7 @@ HB_FUNC( DMY )
int iYearLen;
int iLen;
hb_dateDecode( hb_parnl( 1 ), &iYear, &iMonth, &iDay );
hb_dateDecode( hb_pardl( 1 ), &iYear, &iMonth, &iDay );
hb_dateFormat( hb_pardsbuff( szDate, 1 ), szFormatted, "MM/DD/YYYY" );
iLen = strlen( hb_dateCMonth( iMonth ) );

View File

@@ -1514,7 +1514,6 @@ HB_FUNC( __MVSAVE )
buffer[ 0 ] = '\x1A';
hb_fsWrite( fhnd, buffer, 1 );
hb_fsCommit( fhnd );
hb_fsClose( fhnd );
}