+NCName support

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4625 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa
2016-04-22 08:53:28 +00:00
parent 7ed46a00bc
commit 4134c3a7be
2 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,8 @@ type
{ standart data types defines }
anyURI = type string;
token = type string;
language = type string;
language = type string;
NCName = type string;
nonNegativeInteger = type LongWord;
positiveInteger = type nonNegativeInteger;
float = Single;

View File

@ -535,6 +535,7 @@ begin
AddAlias('language','string',Result);
AddAlias('anyURI','string',Result);
AddAlias('ID','string',Result);
AddAlias('NCName','string',Result);
//AddAlias('float','Single',Result);
AddAlias('integer','int',Result);
AddAlias('nonNegativeInteger','LongWord',Result);