From 8d9470143a5bb80c969f84c571a3286656a7d5a3 Mon Sep 17 00:00:00 2001
From: James David Berry <jberry@apache.org>
Date: Fri, 17 Jun 2005 02:36:39 +0000
Subject: [PATCH] Add const qualifier to getDocumentLocations to match
 interface (patch to 191040 for bug XERCESC-1153).

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@191052 13f79535-47bb-0310-9956-ffa450edef68
---
 src/xercesc/framework/psvi/XSNamespaceItem.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xercesc/framework/psvi/XSNamespaceItem.cpp b/src/xercesc/framework/psvi/XSNamespaceItem.cpp
index ea07852a0..cf973294b 100644
--- a/src/xercesc/framework/psvi/XSNamespaceItem.cpp
+++ b/src/xercesc/framework/psvi/XSNamespaceItem.cpp
@@ -206,7 +206,7 @@ XSNotationDeclaration *XSNamespaceItem::getNotationDeclaration(const XMLCh *name
     return 0;
 }
 
-StringList *XSNamespaceItem::getDocumentLocations()
+const StringList *XSNamespaceItem::getDocumentLocations()
 {
     if (fGrammar)
         return ((XMLSchemaDescriptionImpl*) fGrammar->getGrammarDescription())->getLocationHints();
-- 
GitLab