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

svn commit: r232383 - /xerces/c/trunk/src/xercesc/framework/psvi/XSIDCDefinition.cpp

Author: cargilld
Date: Fri Aug 12 13:48:27 2005
New Revision: 232383

URL: http://svn.apache.org/viewcvs?rev=232383&view=rev
Log:
Change uppercase enums that were conflicting with other products.

Modified:
    xerces/c/trunk/src/xercesc/framework/psvi/XSIDCDefinition.cpp

Modified: xerces/c/trunk/src/xercesc/framework/psvi/XSIDCDefinition.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/trunk/src/xercesc/framework/psvi/XSIDCDefinition.cpp?rev=232383&r1=232382&r2=232383&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/framework/psvi/XSIDCDefinition.cpp (original)
+++ xerces/c/trunk/src/xercesc/framework/psvi/XSIDCDefinition.cpp Fri Aug 12 13:48:27 2005
@@ -91,11 +91,11 @@
 XSIDCDefinition::IC_CATEGORY XSIDCDefinition::getCategory() const
 {
     switch(fIdentityConstraint->getType()) {
-        case IdentityConstraint::UNIQUE:
+        case IdentityConstraint::ICType_UNIQUE:
             return IC_UNIQUE;
-        case IdentityConstraint::KEY:
+        case IdentityConstraint::ICType_KEY:
             return IC_KEY;
-        case IdentityConstraint::KEYREF:
+        case IdentityConstraint::ICType_KEYREF:
             return IC_KEYREF;
         default:
             // REVISIT:



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