From 82c577cfe2d57d5441c385675bade3de99bb70d3 Mon Sep 17 00:00:00 2001 From: Jean-Francois Lefebvre Date: Wed, 9 May 2001 20:11:44 +0000 Subject: [PATCH] 2001-05-09 22:10 UTC+1 JFL (mafact) --- harbour/ChangeLog | 5 +++++ harbour/doc/howtocvs.txt | 6 +++--- harbour/include/hbclass.ch | 1 + 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 320a74d112..7021b4bc87 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 22:10 UTC+1 JFL (mafact) + * include/hbclass.ch + + EXPORT: same as EXPORTED: for classy compatibility + + 2001-05-08 21:30 UTC-0400 David G. Holm * source/rtl/dbdelim.c diff --git a/harbour/doc/howtocvs.txt b/harbour/doc/howtocvs.txt index 71ec87c65e..6ffe4cef9b 100644 --- a/harbour/doc/howtocvs.txt +++ b/harbour/doc/howtocvs.txt @@ -119,9 +119,9 @@ by Victor Szakats by David G. Holm 1) Change your CVSROOT variable from - :pserver:anonymous@cvs.Harbour-project.sourceforge.net:/cvsroot/Harbour-project + :pserver:anonymous@cvs.Harbour-project.sourceforge.net:/cvsroot/harbour-project to - :ext:your_source_forge_ID_in_lower_case@cvs.Harbour-project.sourceforge.net:/cvsroot/Harbour-project + :ext:your_source_forge_ID_in_lower_case@cvs.Harbour-project.sourceforge.net:/cvsroot/harbour-project 2) Set up CVS to use SSH (see cvs_ssh.txt for details). @@ -203,7 +203,7 @@ Next I set up CVS, using the following steps: @echo off SET HOMEDRIVE=E: SET HOMEPATH=/hb-dev/ - SET CVSROOT=:ext:dholm@cvs.Harbour-project.sourceforge.net:/cvsroot/Harbour-project + SET CVSROOT=:ext:dholm@cvs.Harbour-project.sourceforge.net:/cvsroot/harbour-project SET CVS_RSH=ssh cvs co harbour 6) I ran the CHECKOUT batch file and was prompted for my SourceForge diff --git a/harbour/include/hbclass.ch b/harbour/include/hbclass.ch index 10c4663e00..48b8baaec0 100644 --- a/harbour/include/hbclass.ch +++ b/harbour/include/hbclass.ch @@ -228,6 +228,7 @@ DECLARE TClass ; s_oClass:AddInline( "_" + <(DataName1)>, {|Self, param| Self:: := param }, HB_OO_CLSTP_EXPORTED ) #xtranslate EXPORTED: => nScope := HB_OO_CLSTP_EXPORTED +#xtranslate EXPORT: => nScope := HB_OO_CLSTP_EXPORTED #xtranslate VISIBLE: => nScope := HB_OO_CLSTP_EXPORTED #xtranslate HIDDEN: => nScope := HB_OO_CLSTP_HIDDEN #xtranslate PROTECTED: => nScope := HB_OO_CLSTP_PROTECTED