You've already forked lazarus-ccr
RxDBGrid:fix AV on calc collumn width. Patch from ssadragon
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2739 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -3719,7 +3719,10 @@ begin
|
|||||||
begin
|
begin
|
||||||
for I := 0 to AColList.Count - 1 do
|
for I := 0 to AColList.Count - 1 do
|
||||||
begin
|
begin
|
||||||
S := TRxColumn(AColList[i]).Field.DisplayText;
|
if Assigned(TRxColumn(AColList[i]).Field) then
|
||||||
|
S := TRxColumn(AColList[i]).Field.DisplayText
|
||||||
|
else
|
||||||
|
S:='';
|
||||||
with TRxColumn(AColList[i]) do
|
with TRxColumn(AColList[i]) do
|
||||||
if (KeyList.Count > 0) and (PickList.Count > 0) then
|
if (KeyList.Count > 0) and (PickList.Count > 0) then
|
||||||
begin
|
begin
|
||||||
|
Reference in New Issue
Block a user