From 9a63e09587c10d1d200445688f1931561d6028a6 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Fri, 28 Dec 2007 23:41:51 +0000 Subject: [PATCH] 2007-12-28 15:51 UTC+0800 Pritpal Bedi (pritpal@vouchcac.com) * source/rtl/tbrowse.prg Method DispCell() case 'L' DispOut( ftmp, cColor ) => DispOut( alltrim( ftmp ), cColor ) --- harbour/ChangeLog | 6 ++++++ harbour/source/rtl/tbrowse.prg | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 20c2888cdb..ff45da96c7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-12-28 15:51 UTC+0800 Pritpal Bedi (pritpal@vouchcac.com) + * source/rtl/tbrowse.prg + Method DispCell() + case 'L' + DispOut( ftmp, cColor ) => DispOut( alltrim( ftmp ), cColor ) + 2007-12-22 13:14 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/make_tgz.sh + added HB_BUILDSUF diff --git a/harbour/source/rtl/tbrowse.prg b/harbour/source/rtl/tbrowse.prg index 8af89a1319..c7ceb36c0a 100644 --- a/harbour/source/rtl/tbrowse.prg +++ b/harbour/source/rtl/tbrowse.prg @@ -1589,7 +1589,7 @@ METHOD DispCell( nRow, nCol, nMode ) CLASS TBrowse ftmp := PadC( iif( ftmp, "T", "F" ), nWidth ) nSkip := nWidth - Len( LTrim( ftmp ) ) - 1 DispOut( Space( Len( ftmp ) - Len( LTrim( ftmp ) ) ), ::aColorSpec[ 1 ] ) - DispOut( ftmp, cColor ) + DispOut( alltrim( ftmp ), cColor ) DispOut( Space( Len( ftmp ) - Len( RTrim( ftmp ) ) ), ::aColorSpec[ 1 ] ) EXIT