From 1c909a13a0816e20d365000cc527d93e02633b0c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 23 Oct 2015 10:32:47 +0200 Subject: com::sun::star->css in include/ucbhelper to include/xmlscript Change-Id: Iaa7f0b8455a601d3992c08cde0943c709c417256 --- include/xmloff/table/XMLTableExport.hxx | 12 ++++++------ include/xmloff/table/XMLTableImport.hxx | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'include/xmloff/table') diff --git a/include/xmloff/table/XMLTableExport.hxx b/include/xmloff/table/XMLTableExport.hxx index 2b354b20abbe..73ad0e32e5dc 100644 --- a/include/xmloff/table/XMLTableExport.hxx +++ b/include/xmloff/table/XMLTableExport.hxx @@ -45,7 +45,7 @@ class SvXMLExport; class SvXMLExportPropertyMapper; -typedef std::map< const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >, OUString > TableStyleMap; +typedef std::map< const css::uno::Reference< css::uno::XInterface >, OUString > TableStyleMap; struct XMLTableInfo { @@ -62,10 +62,10 @@ public: virtual ~XMLTableExport(); // This method collects all automatic styles for the given table - void collectTableAutoStyles(const com::sun::star::uno::Reference < com::sun::star::table::XColumnRowRange >& xColumnRowRange); + void collectTableAutoStyles(const css::uno::Reference < css::table::XColumnRowRange >& xColumnRowRange); // This method exports the given table - void exportTable(const com::sun::star::uno::Reference < com::sun::star::table::XColumnRowRange >& xColumnRowRange); + void exportTable(const css::uno::Reference < css::table::XColumnRowRange >& xColumnRowRange); // export the styles from the cell style family void exportTableStyles(); @@ -89,10 +89,10 @@ protected: const SvXMLExport& GetExport() const { return mrExport; } private: - SAL_DLLPRIVATE void ImpExportText( const com::sun::star::uno::Reference < com::sun::star::table::XCell >& xCell ); + SAL_DLLPRIVATE void ImpExportText( const css::uno::Reference < css::table::XCell >& xCell ); - void ExportCell( const com::sun::star::uno::Reference < com::sun::star::table::XCell >& xCell, const std::shared_ptr< XMLTableInfo >& pTableInfo, const OUString& sDefaultCellStyle ); - void ExportTableColumns( const com::sun::star::uno::Reference < com::sun::star::container::XIndexAccess >& xtableColumns, const std::shared_ptr< XMLTableInfo >& pTableInfo ); + void ExportCell( const css::uno::Reference < css::table::XCell >& xCell, const std::shared_ptr< XMLTableInfo >& pTableInfo, const OUString& sDefaultCellStyle ); + void ExportTableColumns( const css::uno::Reference < css::container::XIndexAccess >& xtableColumns, const std::shared_ptr< XMLTableInfo >& pTableInfo ); }; diff --git a/include/xmloff/table/XMLTableImport.hxx b/include/xmloff/table/XMLTableImport.hxx index 8e6bb2659627..81052c7c58c7 100644 --- a/include/xmloff/table/XMLTableImport.hxx +++ b/include/xmloff/table/XMLTableImport.hxx @@ -47,9 +47,9 @@ public: virtual ~XMLTableImport(); SvXMLImportContext* CreateTableContext( sal_uInt16 nPrfx, const OUString& rLName, - ::com::sun::star::uno::Reference< ::com::sun::star::table::XColumnRowRange >& xColumnRowRange ); + css::uno::Reference< css::table::XColumnRowRange >& xColumnRowRange ); - SvXMLStyleContext* CreateTableTemplateContext( sal_uInt16 nPrfx, const OUString& rLName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ); + SvXMLStyleContext* CreateTableTemplateContext( sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); rtl::Reference< SvXMLImportPropertyMapper > GetCellImportPropertySetMapper() const { return mxCellImportPropertySetMapper; } rtl::Reference< SvXMLImportPropertyMapper > GetRowImportPropertySetMapper() const { return mxRowImportPropertySetMapper; } -- cgit