diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-13 16:59:57 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-14 06:37:16 +0000 |
commit | d191d1f9b684c6229f3651361c92ff39ffb350f1 (patch) | |
tree | e670ba0105d974b3a68c17b42366eec1d35ebae4 /framework/inc/xml/xmlnamespaces.hxx | |
parent | ba974ccc8c49766542ddd727c95ecc5db1cff198 (diff) |
com::sun::star->css in framework
Change-Id: If5a77db83fcbef5ed436f2043ddeb7c515a840dc
Reviewed-on: https://gerrit.libreoffice.org/19356
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework/inc/xml/xmlnamespaces.hxx')
-rw-r--r-- | framework/inc/xml/xmlnamespaces.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/framework/inc/xml/xmlnamespaces.hxx b/framework/inc/xml/xmlnamespaces.hxx index e56b11a747ae..fab1dd2b8f68 100644 --- a/framework/inc/xml/xmlnamespaces.hxx +++ b/framework/inc/xml/xmlnamespaces.hxx @@ -36,21 +36,21 @@ class FWE_DLLPUBLIC XMLNamespaces virtual ~XMLNamespaces(); void addNamespace( const OUString& aName, const OUString& aValue ) - throw( ::com::sun::star::xml::sax::SAXException ); + throw( css::xml::sax::SAXException ); OUString applyNSToAttributeName( const OUString& ) const - throw( ::com::sun::star::xml::sax::SAXException, std::exception ); + throw( css::xml::sax::SAXException, std::exception ); OUString applyNSToElementName( const OUString& ) const - throw( ::com::sun::star::xml::sax::SAXException, std::exception ); + throw( css::xml::sax::SAXException, std::exception ); private: typedef ::std::map< OUString, OUString > NamespaceMap; OUString getNamespaceValue( const OUString& aNamespace ) const - throw( ::com::sun::star::xml::sax::SAXException ); + throw( css::xml::sax::SAXException ); - OUString m_aDefaultNamespace; - OUString m_aXMLAttributeNamespace; + OUString m_aDefaultNamespace; + OUString m_aXMLAttributeNamespace; NamespaceMap m_aNamespaceMap; }; |