diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-30 09:53:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-02 15:23:52 +0200 |
commit | 4ff115b3e7ff9c73dcc98fc6e7109f499ea81cfe (patch) | |
tree | 3660782eb23bdacd921bb11dcc825bc1b47035cf /include/xmloff/table/XMLTableExport.hxx | |
parent | 8635fa156ba63e5f63565b6d19ea798a61643b01 (diff) |
drop UniReference in favour of rtl::Reference
since they're doing the same thing.
Change-Id: I76134b6b848db8628f315fe5bd9eb972a6bf0cb6
Diffstat (limited to 'include/xmloff/table/XMLTableExport.hxx')
-rw-r--r-- | include/xmloff/table/XMLTableExport.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmloff/table/XMLTableExport.hxx b/include/xmloff/table/XMLTableExport.hxx index 8fe048c120e2..cf324e76924e 100644 --- a/include/xmloff/table/XMLTableExport.hxx +++ b/include/xmloff/table/XMLTableExport.hxx @@ -38,7 +38,7 @@ #include <rtl/ref.hxx> #include <xmloff/dllapi.h> -#include <xmloff/uniref.hxx> +#include <salhelper/simplereferenceobject.hxx> #include <xmloff/xmlprmap.hxx> #include <xmloff/xmlexppr.hxx> @@ -61,7 +61,7 @@ struct XMLTableInfo typedef ::std::map< const ::com::sun::star::uno::Reference< com::sun::star::table::XColumnRowRange >, boost::shared_ptr< XMLTableInfo > > TableInfoMap; -class XMLOFF_DLLPUBLIC XMLTableExport : public UniRefBase +class XMLOFF_DLLPUBLIC XMLTableExport : public salhelper::SimpleReferenceObject { public: XMLTableExport(SvXMLExport& rExp, const rtl::Reference< SvXMLExportPropertyMapper >& xCellExportPropertySetMapper, const rtl::Reference< XMLPropertyHandlerFactory >& xFactoryRef ); |