diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 814848045b..60ca4c11c3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-13 21:44 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/contrib/hbwin/win_tole.prg + ! Fixed assignment to oErr:Operation from "+" to "-" in + OleValueMinus() method - fix by Luis Krause Mantilla borrowed + from xHarbour + 2008-10-13 21:30 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbwince.h * harbour/source/common/hbwince.c diff --git a/harbour/contrib/hbwin/win_tole.prg b/harbour/contrib/hbwin/win_tole.prg index 4f56389184..db2ee06d74 100644 --- a/harbour/contrib/hbwin/win_tole.prg +++ b/harbour/contrib/hbwin/win_tole.prg @@ -405,7 +405,7 @@ METHOD OleValueMinus( xArg ) CLASS TOleAuto oErr:CanSubstitute := .T. oErr:Description := "argument error" oErr:GenCode := EG_ARG - oErr:Operation := '+' + oErr:Operation := '-' oErr:Severity := ES_ERROR oErr:SubCode := 1082 oErr:SubSystem := "BASE"