2010-05-17 00:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/sddfb/sddfb.hbi
    ! Sync with recent fix in contrib/hbfbird/hbfbird.hbi.

  * src/vm/memvars.c
    * Minor typo in comment.
    * Formatting.
This commit is contained in:
Viktor Szakats
2010-05-16 23:01:55 +00:00
parent df85a620e5
commit 967945e86e
3 changed files with 12 additions and 6 deletions

View File

@@ -17,12 +17,20 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-05-17 00:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/sddfb/sddfb.hbi
! Sync with recent fix in contrib/hbfbird/hbfbird.hbi.
* src/vm/memvars.c
* Minor typo in comment.
* Formatting.
2010-15-16 15:40 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/hbqt_hbqplaintextedit.cpp
* contrib/hbqt/hbqt_hbqplaintextedit.h
* contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
* contrib/hbide/ideedit.prg
! More fluency and refinements in selection process spanning
! More fluency and refinements in selection process spanning
across all three modes.
2010-05-16 23:36 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

View File

@@ -4,5 +4,7 @@
-hbimplib
-ofbclient
{!allgcc}${HB_WITH_FIREBIRD}/../bin/fbclient.dll
{allgcc}${HB_WITH_FIREBIRD}/../lib/fbclient_ms.lib

View File

@@ -1098,9 +1098,7 @@ HB_FUNC( __MVPUBLIC )
HB_SIZE j, ulLen = hb_arrayLen( pMemvar );
for( j = 1; j <= ulLen; j++ )
{
hb_memvarCreateFromItem( hb_arrayGetItemPtr( pMemvar, j ), VS_PUBLIC, NULL );
}
}
else
hb_memvarCreateFromItem( pMemvar, VS_PUBLIC, NULL );
@@ -1132,9 +1130,7 @@ HB_FUNC( __MVPRIVATE )
HB_SIZE j, ulLen = hb_arrayLen( pMemvar );
for( j = 1; j <= ulLen; j++ )
{
hb_memvarCreateFromItem( hb_arrayGetItemPtr( pMemvar, j ), VS_PRIVATE, NULL );
}
}
else
hb_memvarCreateFromItem( pMemvar, VS_PRIVATE, NULL );
@@ -1392,7 +1388,7 @@ static HB_DYNS_FUNC( hb_memvarSave )
HB_SIZE ulLen = hb_itemGetCLen( pMemvar ) + 1;
int iOverFlow = 0;
/* Clipper support only 64KB strings */
/* Clipper supports only 64KB strings */
if( ulLen > USHRT_MAX )
{
ulLen = USHRT_MAX;