summaryrefslogtreecommitdiff
path: root/include/editeng/outliner.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-10-11 13:27:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2023-10-11 21:53:13 +0200
commit6d1b241ab7b2edf3f3eef26f4cc514c22849caf5 (patch)
tree3c8c3b278b5fe084434b0bee682575d4a41c0adb /include/editeng/outliner.hxx
parent432e34fd1e0309038d0765f2497b7925c16a8ed2 (diff)
Drop o3tl::span, can use C++20 std::span directly now
Change-Id: Ic21ff7bf48f07f7277979d52e99d2c5c268de83f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157825 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/editeng/outliner.hxx')
-rw-r--r--include/editeng/outliner.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 71ffd00a73e4..33bb6fae90de 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -404,8 +404,8 @@ public:
sal_Int32 mnTextLen;
sal_Int32 mnPara;
const SvxFont& mrFont;
- o3tl::span<const sal_Int32> mpDXArray;
- o3tl::span<const sal_Bool> mpKashidaArray;
+ std::span<const sal_Int32> mpDXArray;
+ std::span<const sal_Bool> mpKashidaArray;
const EEngineData::WrongSpellVector* mpWrongSpellVector;
const SvxFieldData* mpFieldData;
@@ -431,8 +431,8 @@ public:
sal_Int32 nTxtLen,
const SvxFont& rFnt,
sal_Int32 nPar,
- o3tl::span<const sal_Int32> pDXArr,
- o3tl::span<const sal_Bool> pKashidaArr,
+ std::span<const sal_Int32> pDXArr,
+ std::span<const sal_Bool> pKashidaArr,
const EEngineData::WrongSpellVector* pWrongSpellVector,
const SvxFieldData* pFieldData,
const css::lang::Locale* pLocale,
@@ -828,8 +828,8 @@ public:
void DrawingText( const Point& rStartPos, const OUString& rText,
sal_Int32 nTextStart, sal_Int32 nTextLen,
- o3tl::span<const sal_Int32> pDXArray,
- o3tl::span<const sal_Bool> pKashidaArray,
+ std::span<const sal_Int32> pDXArray,
+ std::span<const sal_Bool> pKashidaArray,
const SvxFont& rFont,
sal_Int32 nPara, sal_uInt8 nRightToLeft,
const EEngineData::WrongSpellVector* pWrongSpellVector,