summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-06-17 10:38:59 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-06-17 10:38:59 +0000
commit744ebbb1c9c205437086c60cbcefdad09a3de89f (patch)
tree9facf51c8cde6ad5ac9881bf9d519020c0464a7f /automation
parentf45c0881568c58ddca7504391d38b367d252c3b2 (diff)
INTEGRATION: CWS gh6 (1.2.62); FILE MERGED
2004/03/05 09:46:57 gh 1.2.62.1: fix compiler warnings
Diffstat (limited to 'automation')
-rw-r--r--automation/source/server/XMLParser.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/automation/source/server/XMLParser.cxx b/automation/source/server/XMLParser.cxx
index 8f9910e633d3..56431b41b963 100644
--- a/automation/source/server/XMLParser.cxx
+++ b/automation/source/server/XMLParser.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLParser.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2003-04-15 15:52:42 $
+ * last change: $Author: rt $ $Date: 2004-06-17 11:38:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -201,7 +201,7 @@ class ElementNode : public Node
public:
ElementNode( const String& aName, Reference < XAttributeList > xAttributes );
void AppendNode( NodeRef xNewNode );
- USHORT GetChildCount(){ return aDocumentNodeList.Count(); }
+ ULONG GetChildCount(){ return aDocumentNodeList.Count(); }
NodeRef GetChild( USHORT nIndex ){ return aDocumentNodeList.GetObject( nIndex ); }
Reference < XAttributeList > GetAttributes(){ return xAttributeList; }