diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0a6fdd43c0..12082fdaf5 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,13 @@ +20000412-03:14 GMT+1 Victor Szakats + + * source/tools/ctmisc.prg + ! CT_SAVEGETS() fixed to empty GetList. + + * source/rtl/gtapi.c + + hb_gtGetColorStr() readded the previous version of colorspec generation + and put the CA-Clipper compatible one between STRICT guards. + (Talking about the "W+*/GR" vs. "W+/GR*" issue.) + 20000411-20:30 GMT -3 Luiz Rafael Culik > 4 ) & 7; nColor = ( s_pColor[ uiColorIndex ] >> 4 ) & 7; } diff --git a/harbour/source/tools/ctmisc.prg b/harbour/source/tools/ctmisc.prg index 3999fdedb4..f5d7be9cf4 100644 --- a/harbour/source/tools/ctmisc.prg +++ b/harbour/source/tools/ctmisc.prg @@ -75,7 +75,11 @@ FUNCTION CT_RESTGETS( aGetList ) RETURN .T. FUNCTION CT_SAVEGETS() - RETURN GetList + LOCAL aGetList := GetList + + GetList := {} + + RETURN aGetList FUNCTION CT_SCREENMIX( c, a, row, col )