diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-04 20:31:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-05 15:49:05 +0200 |
commit | e94b85019d607f83b626d4ff3756d8f04c0dfb3f (patch) | |
tree | 0e70fa35173fdd86ac6b7ccae935c5a122e3a90c /sw/source/uibase/uiview/viewmdi.cxx | |
parent | a81e51afcbc98a266115af4fb4a5f6a78c1d015c (diff) |
simplify IMark hierarchy (7)
drop the iterator wrapper, no longer necessary
Change-Id: I41697c062805c3fadd0210cffbc8f7beffe01f2d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171472
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/uiview/viewmdi.cxx')
-rw-r--r-- | sw/source/uibase/uiview/viewmdi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uiview/viewmdi.cxx b/sw/source/uibase/uiview/viewmdi.cxx index 8ded09973e91..e1bbb2fe6094 100644 --- a/sw/source/uibase/uiview/viewmdi.cxx +++ b/sw/source/uibase/uiview/viewmdi.cxx @@ -516,7 +516,7 @@ IMPL_LINK( SwView, MoveNavigationHdl, void*, p, void ) // collect and sort navigator reminder names IDocumentMarkAccess* const pMarkAccess = rSh.getIDocumentMarkAccess(); std::vector< OUString > vNavMarkNames; - for(IDocumentMarkAccess::const_iterator_t ppMark = pMarkAccess->getAllMarksBegin(); + for(auto ppMark = pMarkAccess->getAllMarksBegin(); ppMark != pMarkAccess->getAllMarksEnd(); ++ppMark) { |