diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-05 15:55:58 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-06 05:44:52 +0000 |
commit | 7a401e5e83abb41b51fca92e3d92dfb2fff6d0e6 (patch) | |
tree | 09792748ab8f1e7f976d28c2163637f8268f6d36 /sw/inc/tox.hxx | |
parent | cb27eef229ce7f3d415184e74d1cb24ec2f8510c (diff) |
com::sun::star->css in sw/inc
Change-Id: I6ffdb1deaa32156c65f997a1a1056928b7cd863d
Reviewed-on: https://gerrit.libreoffice.org/19803
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc/tox.hxx')
-rw-r--r-- | sw/inc/tox.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sw/inc/tox.hxx b/sw/inc/tox.hxx index 145d02538698..99d7436b3f7d 100644 --- a/sw/inc/tox.hxx +++ b/sw/inc/tox.hxx @@ -74,8 +74,7 @@ class SW_DLLPUBLIC SwTOXMark bool m_bAutoGenerated : 1; // generated using a concordance file bool m_bMainEntry : 1; // main entry emphasized by character style - ::com::sun::star::uno::WeakReference< - ::com::sun::star::text::XDocumentIndexMark> m_wXDocumentIndexMark; + css::uno::WeakReference<css::text::XDocumentIndexMark> m_wXDocumentIndexMark; SwTOXMark(); // to create the default attribute in _InitCore @@ -139,11 +138,9 @@ public: const SwTextTOXMark* GetTextTOXMark() const { return m_pTextAttr; } SwTextTOXMark* GetTextTOXMark() { return m_pTextAttr; } - SAL_DLLPRIVATE ::com::sun::star::uno::WeakReference< - ::com::sun::star::text::XDocumentIndexMark> const& GetXTOXMark() const + SAL_DLLPRIVATE css::uno::WeakReference<css::text::XDocumentIndexMark> const& GetXTOXMark() const { return m_wXDocumentIndexMark; } - SAL_DLLPRIVATE void SetXTOXMark(::com::sun::star::uno::Reference< - ::com::sun::star::text::XDocumentIndexMark> const& xMark) + SAL_DLLPRIVATE void SetXTOXMark(css::uno::Reference<css::text::XDocumentIndexMark> const& xMark) { m_wXDocumentIndexMark = xMark; } void DeRegister() { GetRegisteredInNonConst()->Remove( this ); } void RegisterToTOXType( SwTOXType& rMark ); |