diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-06-24 09:38:06 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-06-25 10:18:44 +0200 |
commit | 87c81bb409cb5cd826eb21366a8e3222cb924ca1 (patch) | |
tree | 3d6c86fd761d169321d8edca4bdb90a58854b6de | |
parent | bdc8d3dec0beb167c40e6d0eea02c3b401e5117d (diff) |
remove commented out code
I accidentally left behind in
commit 168eb2e64b7ad08645f62b45e15af2ee7260100c
Author: Noel Grandin <noelgrandin@gmail.com>
Date: Sun Jun 23 19:44:06 2024 +0200
tdf#144208 speedup doc with lots of redline(15)
Change-Id: I6fa4765db48d158a12c6ea547ede0d0e13f0e61f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169448
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
-rw-r--r-- | sw/source/core/unocore/unotext.cxx | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/sw/source/core/unocore/unotext.cxx b/sw/source/core/unocore/unotext.cxx index edfeaf1e98c1..41653997fd47 100644 --- a/sw/source/core/unocore/unotext.cxx +++ b/sw/source/core/unocore/unotext.cxx @@ -77,51 +77,6 @@ using namespace ::com::sun::star; constexpr OUString cInvalidObject = u"this object is invalid"_ustr; -//class SwXText::Impl -//{ -// -//public: -// SwXText & m_rThis; -// SfxItemPropertySet const& m_rPropSet; -// const CursorType m_eType; -// SwDoc * m_pDoc; -// bool m_bIsValid; -// -// Impl( SwXText & rThis, -// SwDoc *const pDoc, const CursorType eType) -// : m_rThis(rThis) -// , m_rPropSet(*aSwMapProvider.GetPropertySet(PROPERTY_MAP_TEXT)) -// , m_eType(eType) -// , m_pDoc(pDoc) -// , m_bIsValid(nullptr != pDoc) -// { -// } -// -// /// @throws lang::IllegalArgumentException -// /// @throws uno::RuntimeException -// rtl::Reference<SwXParagraph> -// finishOrAppendParagraph( -// const uno::Sequence< beans::PropertyValue >& -// rCharacterAndParagraphProperties, -// const uno::Reference< text::XTextRange >& xInsertPosition); -// -// /// @throws lang::IllegalArgumentException -// /// @throws uno::RuntimeException -// sal_Int16 ComparePositions( -// const uno::Reference<text::XTextRange>& xPos1, -// const uno::Reference<text::XTextRange>& xPos2); -// -// /// @throws lang::IllegalArgumentException -// /// @throws uno::RuntimeException -// bool CheckForOwnMember(const SwPaM & rPaM); -// -// void ConvertCell( -// const uno::Sequence< uno::Reference< text::XTextRange > > & rCell, -// std::vector<SwNodeRange> & rRowNodes, -// SwNodeRange *const pLastCell); -// -//}; - SwXText::SwXText(SwDoc *const pDoc, const CursorType eType) : m_rPropSet(*aSwMapProvider.GetPropertySet(PROPERTY_MAP_TEXT)) , m_eType(eType) |