summaryrefslogtreecommitdiffstats
path: root/include/xmloff/xmlexppr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-30 09:53:06 +0200
committerNoel Grandin <noel@peralex.com>2014-07-02 15:23:52 +0200
commit4ff115b3e7ff9c73dcc98fc6e7109f499ea81cfe (patch)
tree3660782eb23bdacd921bb11dcc825bc1b47035cf /include/xmloff/xmlexppr.hxx
parentfdo#79216 correct description of NORM.S.DIST function (diff)
downloadcore-4ff115b3e7ff9c73dcc98fc6e7109f499ea81cfe.tar.gz
core-4ff115b3e7ff9c73dcc98fc6e7109f499ea81cfe.zip
drop UniReference in favour of rtl::Reference
since they're doing the same thing. Change-Id: I76134b6b848db8628f315fe5bd9eb972a6bf0cb6
Diffstat (limited to 'include/xmloff/xmlexppr.hxx')
-rw-r--r--include/xmloff/xmlexppr.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/xmloff/xmlexppr.hxx b/include/xmloff/xmlexppr.hxx
index 7a1f655e62f0..8d98a1b257dd 100644
--- a/include/xmloff/xmlexppr.hxx
+++ b/include/xmloff/xmlexppr.hxx
@@ -20,10 +20,11 @@
#ifndef INCLUDED_XMLOFF_XMLEXPPR_HXX
#define INCLUDED_XMLOFF_XMLEXPPR_HXX
+#include <rtl/ref.hxx>
#include <sal/config.h>
#include <xmloff/dllapi.h>
#include <xmloff/xmlprmap.hxx>
-#include <xmloff/uniref.hxx>
+#include <salhelper/simplereferenceobject.hxx>
class SvXMLUnitConverter;
@@ -39,7 +40,7 @@ class SvXMLExport;
// even if its empty
#define XML_EXPORT_FLAG_IGN_WS 0x0008
-class XMLOFF_DLLPUBLIC SvXMLExportPropertyMapper : public UniRefBase
+class XMLOFF_DLLPUBLIC SvXMLExportPropertyMapper : public salhelper::SimpleReferenceObject
{
struct Impl;
Impl* mpImpl;
@@ -91,14 +92,14 @@ protected:
public:
SvXMLExportPropertyMapper(
- const UniReference< XMLPropertySetMapper >& rMapper );
+ const rtl::Reference< XMLPropertySetMapper >& rMapper );
virtual ~SvXMLExportPropertyMapper();
// Add a ExportPropertyMapper at the end of the import mapper chain.
// The added mapper MUST not be used outside the Mapper chain any longer,
// because its PropertyMapper will be replaced.
void ChainExportMapper(
- const UniReference< SvXMLExportPropertyMapper>& rMapper );
+ const rtl::Reference< SvXMLExportPropertyMapper>& rMapper );
/** Filter all properties we don't want to export:
Take all properties of the XPropertySet which are also found in the
@@ -174,7 +175,7 @@ public:
const ::std::vector< XMLPropertyState > *pProperties = 0,
sal_uInt32 nIdx = 0 ) const;
- const UniReference<XMLPropertySetMapper>& getPropertySetMapper() const;
+ const rtl::Reference<XMLPropertySetMapper>& getPropertySetMapper() const;
void SetStyleName( const OUString& rStyleName );
const OUString& GetStyleName() const;