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/txtparae.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/txtparae.hxx')
-rw-r--r-- | include/xmloff/txtparae.hxx | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/include/xmloff/txtparae.hxx b/include/xmloff/txtparae.hxx index ff4037420f12..2323660455f6 100644 --- a/include/xmloff/txtparae.hxx +++ b/include/xmloff/txtparae.hxx @@ -26,7 +26,6 @@ #include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/beans/PropertyValue.hpp> -#include <xmloff/uniref.hxx> #include <xmloff/xmlexppr.hxx> #include <xmloff/styleexp.hxx> #include <xmloff/xmltoken.hxx> @@ -70,12 +69,12 @@ class XMLOFF_DLLPUBLIC XMLTextParagraphExport : public XMLStyleExport // SvXMLExport& rExport; SvXMLAutoStylePoolP& rAutoStylePool; - UniReference < SvXMLExportPropertyMapper > xParaPropMapper; - UniReference < SvXMLExportPropertyMapper > xTextPropMapper; - UniReference < SvXMLExportPropertyMapper > xFramePropMapper; - UniReference < SvXMLExportPropertyMapper > xAutoFramePropMapper; - UniReference < SvXMLExportPropertyMapper > xSectionPropMapper; - UniReference < SvXMLExportPropertyMapper > xRubyPropMapper; + rtl::Reference < SvXMLExportPropertyMapper > xParaPropMapper; + rtl::Reference < SvXMLExportPropertyMapper > xTextPropMapper; + rtl::Reference < SvXMLExportPropertyMapper > xFramePropMapper; + rtl::Reference < SvXMLExportPropertyMapper > xAutoFramePropMapper; + rtl::Reference < SvXMLExportPropertyMapper > xSectionPropMapper; + rtl::Reference < SvXMLExportPropertyMapper > xRubyPropMapper; const ::std::auto_ptr< ::xmloff::BoundFrameSets > pBoundFrameSets; XMLTextFieldExport *pFieldExport; @@ -211,29 +210,29 @@ protected: const SvXMLAutoStylePoolP& GetAutoStylePool() const { return rAutoStylePool; } public: - UniReference < SvXMLExportPropertyMapper > GetParaPropMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetParaPropMapper() const { return xParaPropMapper; } - UniReference < SvXMLExportPropertyMapper > GetTextPropMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetTextPropMapper() const { return xTextPropMapper; } - UniReference < SvXMLExportPropertyMapper > GetFramePropMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetFramePropMapper() const { return xFramePropMapper; } - UniReference < SvXMLExportPropertyMapper > GetAutoFramePropMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetAutoFramePropMapper() const { return xAutoFramePropMapper; } - UniReference < SvXMLExportPropertyMapper > GetSectionPropMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetSectionPropMapper() const { return xSectionPropMapper; } - UniReference < SvXMLExportPropertyMapper > GetRubyPropMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetRubyPropMapper() const { return xRubyPropMapper; } @@ -647,7 +646,7 @@ public: bool IsBlockMode() const { return bBlock; } - UniReference < SvXMLExportPropertyMapper > GetParagraphPropertyMapper() const + rtl::Reference < SvXMLExportPropertyMapper > GetParagraphPropertyMapper() const { return xParaPropMapper; } @@ -667,7 +666,7 @@ public: void PreventExportOfControlsInMuteSections( const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess> & rShapes, - UniReference<xmloff::OFormLayerXMLExport> xFormExport ); + rtl::Reference<xmloff::OFormLayerXMLExport> xFormExport ); SinglePropertySetInfoCache& GetCharStyleNamesPropInfoCache() { return aCharStyleNamesPropInfoCache; } |