2001-10-10 10:07 GMT Dave Pearson <davep@davep.org>

* source/rtl/tbrowse.prg
     * Fixed bug in :insColumn() as reported by Andreas Moroder in
       <URL:news:comp.lang.clipper>.
This commit is contained in:
Dave Pearson
2001-10-10 10:14:23 +00:00
parent 8deb27c165
commit 4e7c9996d7
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2001-10-10 10:07 GMT Dave Pearson <davep@davep.org>
* source/rtl/tbrowse.prg
* Fixed bug in :insColumn() as reported by Andreas Moroder in
<URL:news:comp.lang.clipper>.
2001-10-08 21:30 GMT -3 Luiz Rafael Culik<culik@sl.conex.net>
*source/rtl/isprint.c
contrib/libct/files.c

View File

@@ -152,7 +152,7 @@ CLASS TBrowse
METHOD Hilite() // Highlights the current cell
METHOD InsColumn( nPos, oCol ) INLINE; // Insert a column object in a browse
ASize( ::aColumns, Len( ::aColumns + 1 ) ), AIns( ::aColumns, nPos ),;
ASize( ::aColumns, Len( ::aColumns ) + 1 ), AIns( ::aColumns, nPos ),;
::aColumns[ nPos ] := oCol, ::Configure( 2 ), oCol
METHOD Invalidate() // Forces entire redraw during next stabilization
METHOD RefreshAll() // Causes all data to be recalculated during the next stabilize