From 967945e86e9a42543469ed60cce92c25accacbe2 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 16 May 2010 23:01:55 +0000 Subject: [PATCH] 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. --- harbour/ChangeLog | 10 +++++++++- harbour/contrib/sddfb/sddfb.hbi | 2 ++ harbour/src/vm/memvars.c | 6 +----- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f97f61d563..f8dbc2620d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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) diff --git a/harbour/contrib/sddfb/sddfb.hbi b/harbour/contrib/sddfb/sddfb.hbi index e31fa6b5af..d9bd1c84a1 100644 --- a/harbour/contrib/sddfb/sddfb.hbi +++ b/harbour/contrib/sddfb/sddfb.hbi @@ -4,5 +4,7 @@ -hbimplib +-ofbclient + {!allgcc}${HB_WITH_FIREBIRD}/../bin/fbclient.dll {allgcc}${HB_WITH_FIREBIRD}/../lib/fbclient_ms.lib diff --git a/harbour/src/vm/memvars.c b/harbour/src/vm/memvars.c index c717184ae4..468d7688f3 100644 --- a/harbour/src/vm/memvars.c +++ b/harbour/src/vm/memvars.c @@ -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;