You've already forked lazarus-ccr
fpspreadsheet: Fix compatibility of WorksheetGrid with Laz 1.8.4
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6823 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -350,7 +350,7 @@ type
|
|||||||
property EditorLineMode: TsEditorLineMode read FLineMode write SetEditorLineMode
|
property EditorLineMode: TsEditorLineMode read FLineMode write SetEditorLineMode
|
||||||
default elmSingleLine;
|
default elmSingleLine;
|
||||||
{@@ Width of the fixed row header column. 0 = auto width detection }
|
{@@ Width of the fixed row header column. 0 = auto width detection }
|
||||||
property FixedColWidth: Integer read GetFixedColWidth
|
property FixedColWidth: Integer read FFixedColWidth
|
||||||
write SetFixedColWidth default 0;
|
write SetFixedColWidth default 0;
|
||||||
{@@ This number of columns at the left is "frozen", i.e. it is not possible to
|
{@@ This number of columns at the left is "frozen", i.e. it is not possible to
|
||||||
scroll these columns }
|
scroll these columns }
|
||||||
@ -1316,6 +1316,7 @@ begin
|
|||||||
|
|
||||||
FDefRowHeight100 := inherited GetDefaultRowHeight;
|
FDefRowHeight100 := inherited GetDefaultRowHeight;
|
||||||
FDefColWidth100 := inherited DefaultColWidth;
|
FDefColWidth100 := inherited DefaultColWidth;
|
||||||
|
FFixedColWidth := 0;
|
||||||
|
|
||||||
FCellFont := TFont.Create;
|
FCellFont := TFont.Create;
|
||||||
FSelPen := TsSelPen.Create;
|
FSelPen := TsSelPen.Create;
|
||||||
|
Reference in New Issue
Block a user