You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by am...@apache.org on 2005/03/17 09:22:29 UTC

cvs commit: xml-xerces/c/src/xercesc/validators/schema GeneralAttributeCheck.cpp

amassari    2005/03/17 00:22:29

  Modified:    c/src/xercesc/validators/schema GeneralAttributeCheck.cpp
  Log:
  Fully qualify enum (jira# 1383)
  
  Revision  Changes    Path
  1.27      +5 -2      xml-xerces/c/src/xercesc/validators/schema/GeneralAttributeCheck.cpp
  
  Index: GeneralAttributeCheck.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/validators/schema/GeneralAttributeCheck.cpp,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- GeneralAttributeCheck.cpp	18 Nov 2004 16:20:06 -0000	1.26
  +++ GeneralAttributeCheck.cpp	17 Mar 2005 08:22:29 -0000	1.27
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.27  2005/03/17 08:22:29  amassari
  + * Fully qualify enum (jira# 1383)
  + *
    * Revision 1.26  2004/11/18 16:20:06  cargilld
    * Changes for linker problems with linux build using xlc.
    *
  @@ -608,7 +611,7 @@
       //  Write it out to a temp file to be read back into this source later.
       //
       FILE* outFl = fopen("ea_table.out", "wt+");
  -    fprintf(outFl, "unsigned short GeneralAttributeCheck::fgElemAttTable[E_Count][A_Count] =\n{\n    {");
  +    fprintf(outFl, "unsigned short GeneralAttributeCheck::fgElemAttTable[GeneralAttributeCheck::E_Count][GeneralAttributeCheck::A_Count] =\n{\n    {");
   
       //"all"
       attList[E_All][A_ID] = Att_Optional | DV_ID;
  @@ -943,7 +946,7 @@
     { 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4098, 0, 0}
   };
   
  -const XMLCh* GeneralAttributeCheck::fAttNames[A_Count] =
  +const XMLCh* GeneralAttributeCheck::fAttNames[GeneralAttributeCheck::A_Count] =
   {
       SchemaSymbols::fgATT_ABSTRACT,
       SchemaSymbols::fgATT_ATTRIBUTEFORMDEFAULT,
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org