LCL: fixed typo in Grids

git-svn-id: trunk@46785 -
This commit is contained in:
maxim 2014-11-08 01:49:29 +00:00
parent b32aafd27f
commit ea3dc9c43d
2 changed files with 2 additions and 2 deletions

View File

@ -8985,7 +8985,7 @@ var
Cfg: TXMLConfig;
begin
if not FileExistsUTF8(FileName) then
raise Exception.Create(rsGridFileDoesNotExists);
raise Exception.Create(rsGridFileDoesNotExist);
Cfg:=TXMLConfig.Create(nil);
Try
Cfg.Filename := FileName;

View File

@ -235,7 +235,7 @@ resourceString
rsFormStreamingError = 'Form streaming "%s" error: %s';
rsFixedColsTooBig = 'FixedCols can''t be > ColCount';
rsFixedRowsTooBig = 'FixedRows can''t be > RowCount';
rsGridFileDoesNotExists = 'Grid file doesn''t exists';
rsGridFileDoesNotExist = 'Grid file doesn''t exist';
rsNotAValidGridFile = 'Not a valid grid file';
rsIndexOutOfRange = 'Index Out of range Cell[Col=%d Row=%d]';
rsGridIndexOutOfRange = 'Grid index out of range.';