* csvdocument: fixed bug in demo application (updating StringGrid after loading a document)

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2441 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
vvzh
2012-05-28 17:14:26 +00:00
parent 03ba6287a3
commit 147bd0d561

View File

@ -109,6 +109,7 @@ procedure TfmCSVTest.btnLoadClick(Sender: TObject);
begin begin
if OpenDialog.Execute then if OpenDialog.Execute then
FDoc.LoadFromFile(OpenDialog.FileName); FDoc.LoadFromFile(OpenDialog.FileName);
UpdateView;
end; end;
procedure TfmCSVTest.UpdateView; procedure TfmCSVTest.UpdateView;