summaryrefslogtreecommitdiffstats
path: root/include/xmloff/xmlerror.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 10:32:47 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 12:05:04 +0200
commit1c909a13a0816e20d365000cc527d93e02633b0c (patch)
tree7a402659f9696c01ceeca51c5ddd2127b3b0e815 /include/xmloff/xmlerror.hxx
parentoox: replace boost::ptr_vector with std::vector<std::unique_ptr> (diff)
downloadcore-1c909a13a0816e20d365000cc527d93e02633b0c.tar.gz
core-1c909a13a0816e20d365000cc527d93e02633b0c.zip
com::sun::star->css in include/ucbhelper to include/xmlscript
Change-Id: Iaa7f0b8455a601d3992c08cde0943c709c417256
Diffstat (limited to 'include/xmloff/xmlerror.hxx')
-rw-r--r--include/xmloff/xmlerror.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/xmloff/xmlerror.hxx b/include/xmloff/xmlerror.hxx
index 853af45923af..96cace370dd8 100644
--- a/include/xmloff/xmlerror.hxx
+++ b/include/xmloff/xmlerror.hxx
@@ -114,8 +114,7 @@ public:
/// add a new entry to the list of error messages
void AddRecord(
sal_Int32 nId, /// error ID == error flags + error class + error number
- const ::com::sun::star::uno::Sequence<
- OUString> & rParams, /// parameters for error message
+ const css::uno::Sequence< OUString> & rParams, /// parameters for error message
const OUString& rExceptionMessage, /// original exception string
sal_Int32 nRow, /// XLocator: file row number
sal_Int32 nColumn, /// XLocator: file column number
@@ -124,18 +123,16 @@ public:
void AddRecord(
sal_Int32 nId, /// error ID == error flags + error class + error number
- const ::com::sun::star::uno::Sequence<
- OUString> & rParams, /// parameters for error message
+ const css::uno::Sequence<OUString> & rParams, /// parameters for error message
const OUString& rExceptionMessage, /// original exception string
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::xml::sax::XLocator> & rLocator); /// location
+ const css::uno::Reference<css::xml::sax::XLocator> & rLocator); /// location
/**
* throw a SAXParseException that describes the first error that matches
* the given mask
*/
void ThrowErrorAsSAXException( sal_Int32 nIdMask )
- throw( ::com::sun::star::xml::sax::SAXParseException );
+ throw( css::xml::sax::SAXParseException );
};
#endif