From 5af062db63b4c224d5a2431a5ac75d19e380d79b Mon Sep 17 00:00:00 2001 From: fdbozzo Date: Sat, 29 Nov 2014 17:16:34 +0100 Subject: [PATCH] =?UTF-8?q?Changeset:=20529=20fdbozzo=20-=2029/11/2014=201?= =?UTF-8?q?6:39:20:=20-=20Arreglo=20defecto:=20Quitada=20la=20capitalizaci?= =?UTF-8?q?=C3=B3n=20a=20min=C3=BAsculas=20de=20propiedades=20Protected?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- foxbin2prg.prg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foxbin2prg.prg b/foxbin2prg.prg index aa8b9c6..711e2b8 100644 --- a/foxbin2prg.prg +++ b/foxbin2prg.prg @@ -9601,9 +9601,9 @@ DEFINE CLASS c_conversor_bin_a_prg AS c_conversor_base FOR I = tnProtected_Count TO 1 STEP -1 *-- El ASCAN es para evitar valores repetidos, que se eliminarán. v1.19.29 - taProtected(I) = LOWER( taProtected(I) ) + taProtected(I) = taProtected(I) IF ASCAN( taProtected, taProtected(I), 1, -1, 0, 1+2+4 ) = I - tcSortedMemo = tcSortedMemo + LOWER(taProtected(I)) + CR_LF + tcSortedMemo = tcSortedMemo + taProtected(I) + CR_LF ELSE ADEL( taProtected, I ) tnProtected_Count = tnProtected_Count - 1