From f44d165d2f033bdfb551729c6d1394e5db680231 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Fri, 6 Jun 2008 11:08:01 +0000 Subject: INTEGRATION: CWS xmlfix2 (1.4.38); FILE MERGED 2008/05/15 17:26:55 mst 1.4.38.2: RESYNC: (1.4-1.5); FILE MERGED 2008/03/31 14:20:36 mst 1.4.38.1: #i81678#: interface change: XXPathAPI - unoxml/source/xpath/xpathapi{.hxx,.cxx}: + adapt to changes in css.xml.xpath.XXPathAPI --- unoxml/source/xpath/xpathapi.hxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'unoxml') diff --git a/unoxml/source/xpath/xpathapi.hxx b/unoxml/source/xpath/xpathapi.hxx index 28aae5cb741d..95cc18ed612b 100644 --- a/unoxml/source/xpath/xpathapi.hxx +++ b/unoxml/source/xpath/xpathapi.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: xpathapi.hxx,v $ - * $Revision: 1.5 $ + * $Revision: 1.6 $ * * This file is part of OpenOffice.org. * @@ -48,6 +48,7 @@ #include #include #include +#include #include #include #include @@ -110,36 +111,35 @@ namespace XPath Use an XPath string to select a nodelist. */ virtual Reference< XNodeList > SAL_CALL selectNodeList(const Reference< XNode >& contextNode, const OUString& str) - throw (RuntimeException); + throw (RuntimeException, XPathException); /** Use an XPath string to select a nodelist. */ virtual Reference< XNodeList > SAL_CALL selectNodeListNS(const Reference< XNode >& contextNode, const OUString& str, const Reference< XNode >& namespaceNode) - throw (RuntimeException); + throw (RuntimeException, XPathException); /** Use an XPath string to select a single node. */ virtual Reference< XNode > SAL_CALL selectSingleNode(const Reference< XNode >& contextNode, const OUString& str) - throw (RuntimeException); + throw (RuntimeException, XPathException); /** Use an XPath string to select a single node. */ virtual Reference< XNode > SAL_CALL selectSingleNodeNS(const Reference< XNode >& contextNode, const OUString& str, const Reference< XNode >& namespaceNode) - throw (RuntimeException); + throw (RuntimeException, XPathException); virtual Reference< XXPathObject > SAL_CALL eval(const Reference< XNode >& contextNode, const OUString& str) - throw (RuntimeException); + throw (RuntimeException, XPathException); virtual Reference< XXPathObject > SAL_CALL evalNS(const Reference< XNode >& contextNode, const OUString& str, const Reference< XNode >& namespaceNode) - throw (RuntimeException); + throw (RuntimeException, XPathException); virtual void SAL_CALL registerExtension(const OUString& aName) throw (RuntimeException); virtual void SAL_CALL registerExtensionInstance(const Reference< XXPathExtension>& aExtension) throw (RuntimeException); - }; } -- cgit