neilg 2003/11/28 14:41:05
Modified: c/src/xercesc/framework/psvi PSVIAttribute.cpp
Log:
fix compilation error
Revision Changes Path
1.5 +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.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- PSVIAttribute.cpp 28 Nov 2003 20:20:54 -0000 1.4
+++ PSVIAttribute.cpp 28 Nov 2003 22:41:04 -0000 1.5
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.5 2003/11/28 22:41:04 neilg
+ * fix compilation error
+ *
* Revision 1.4 2003/11/28 20:20:54 neilg
* make use of canonical representation in PSVIAttribute implementation
*
@@ -103,7 +106,7 @@
fIsSpecified = isSpecified;
fMemoryManager->deallocate((void *)fCanonicalValue);
if(normalizedValue && dv)
- fCanonicalValue = dv->getCanonicalRepresentation(normalizedValue,
fMemoryManager);
+ fCanonicalValue = (XMLCh *)dv->getCanonicalRepresentation(normalizedValue,
fMemoryManager);
else
fCanonicalValue = 0;
fAttributeDecl = attrDecl;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]