mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
lcl: grids: fix backwards compatibility after r52316 #19ab80027c. Issue #30150
git-svn-id: trunk@52318 -
This commit is contained in:
parent
19ab80027c
commit
f1bc81b3e8
@ -846,7 +846,7 @@ type
|
||||
procedure ResetHotCell;
|
||||
procedure ResetPushedCell(ResetColRow: boolean=True);
|
||||
procedure SaveColumns(cfg: TXMLConfig; Version: integer);
|
||||
function ScrollToCell(const aCol,aRow: Integer; ForceFullyVisible: Boolean): Boolean;
|
||||
function ScrollToCell(const aCol,aRow: Integer; const ForceFullyVisible: Boolean = True): Boolean;
|
||||
function ScrollGrid(Relative:Boolean; DCol,DRow: Integer): TPoint;
|
||||
procedure SetCol(AValue: Integer);
|
||||
procedure SetColWidths(Acol: Integer; Avalue: Integer);
|
||||
@ -3312,7 +3312,7 @@ end;
|
||||
|
||||
{ Scroll the grid until cell[aCol,aRow] is shown }
|
||||
function TCustomGrid.ScrollToCell(const aCol, aRow: Integer;
|
||||
ForceFullyVisible: Boolean): Boolean;
|
||||
const ForceFullyVisible: Boolean): Boolean;
|
||||
var
|
||||
RNew: TRect;
|
||||
OldTopLeft:TPoint;
|
||||
|
Loading…
Reference in New Issue
Block a user