diff --git a/wst/trunk/base_service_intf.pas b/wst/trunk/base_service_intf.pas index 0d438c6be..f8041985a 100644 --- a/wst/trunk/base_service_intf.pas +++ b/wst/trunk/base_service_intf.pas @@ -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; diff --git a/wst/trunk/ws_helper/pascal_parser_intf.pas b/wst/trunk/ws_helper/pascal_parser_intf.pas index 95edf042c..ecdeb10d6 100644 --- a/wst/trunk/ws_helper/pascal_parser_intf.pas +++ b/wst/trunk/ws_helper/pascal_parser_intf.pas @@ -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);