Skip to content
Snippets Groups Projects
Commit 89f377df authored by Khaled Noaman's avatar Khaled Noaman
Browse files

Fix for bug 6834.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173556 13f79535-47bb-0310-9956-ffa450edef68
parent e103e2f5
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,9 @@
/*
* $Log$
* Revision 1.3 2002/03/04 15:09:50 knoaman
* Fix for bug 6834.
*
* Revision 1.2 2002/02/06 22:30:50 knoaman
* Added a new attribute to store the wild card information for elements of type 'anyType'.
*
......@@ -385,6 +388,10 @@ inline SchemaElementDecl::ModelTypes SchemaElementDecl::getModelType() const
inline DatatypeValidator* SchemaElementDecl::getDatatypeValidator() const
{
if (fXsiComplexTypeInfo) {
return fXsiComplexTypeInfo->getDatatypeValidator();
}
return fDatatypeValidator;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment