neilg 2003/12/02 09:37:03
Modified: c/src/xercesc/framework/psvi PSVIAttribute.cpp
Log:
fix compilation problem
Revision Changes Path
1.7 +4 -1 xml-xerces/c/src/xercesc/framework/psvi/PSVIAttribute.cpp
Index: PSVIAttribute.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIAttribute.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- PSVIAttribute.cpp 2 Dec 2003 17:31:42 -0000 1.6
+++ PSVIAttribute.cpp 2 Dec 2003 17:37:03 -0000 1.7
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.7 2003/12/02 17:37:03 neilg
+ * fix compilation problem
+ *
* Revision 1.6 2003/12/02 17:31:42 neilg
* since there are certain things, such as schemaLocation attributes, that have a
datatype and which we nonetheless do not validate, make canonical-value production
dependent on validity being valid
*
@@ -108,7 +111,7 @@
fDefaultValue = defaultValue;
fIsSpecified = isSpecified;
fMemoryManager->deallocate((void *)fCanonicalValue);
- if(normalizedValue && dv && fValidityState == VALIDITY_STATE::VALID)
+ if(normalizedValue && dv && fValidityState == PSVIItem::VALIDITY_VALID)
fCanonicalValue = (XMLCh *)dv->getCanonicalRepresentation(normalizedValue,
fMemoryManager);
else
fCanonicalValue = 0;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]