From 3c76b95b42d19967c52d702bb54e0469fdd7a70c Mon Sep 17 00:00:00 2001 From: Walter Negro Date: Tue, 17 Dec 2002 15:48:35 +0000 Subject: [PATCH] 2002-12-17 12:40 UTC-0300 Walter Negro * source/tget.prg ! Fix, UpdateBuffer() should not actualize the variable if the value was not modified. --- harbour/source/rtl/tget.prg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/source/rtl/tget.prg b/harbour/source/rtl/tget.prg index df185fca4e..0f795d8a14 100644 --- a/harbour/source/rtl/tget.prg +++ b/harbour/source/rtl/tget.prg @@ -125,7 +125,7 @@ CLASS Get METHOD SetFocus() METHOD Undo() METHOD UnTransform() - METHOD UpdateBuffer() INLINE ::buffer := ::PutMask( ), ::Assign():Display(), Self + METHOD UpdateBuffer() INLINE ::buffer := ::PutMask( ), if(::lEdit, ::Assign(),), ::Display(), Self METHOD VarGet() METHOD VarPut(xValue, lReFormat)