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 )
This commit is contained in:
Pritpal Bedi
2007-12-28 23:41:51 +00:00
parent 9ba8471505
commit 9a63e09587
2 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
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

View File

@@ -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