summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/MarkManager.hxx
diff options
context:
space:
mode:
authorCor Nouws <oolst@nouenoff.nl>2015-09-23 00:40:06 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-09-23 23:55:53 +0200
commit2fcf8923d2c520a5a16b1b3a45877adaadd7eab4 (patch)
tree1b2439cf8c3ff23f20618fef778faa7f42ff0251 /sw/source/core/inc/MarkManager.hxx
parent12c2bbc317b355353d4f725c9439fbde803b4fc4 (diff)
tdf#86397 Bookmark: no consecutive name numbering applied when copied
this partially changes behaviour introduced with commit bb00a0097900ae054401f7758a915047cfde4065 but without the performace problems from the old code thanks to kendy for helping Change-Id: I5dab81b58262f67db1c70223c612636a8b8c90ee
Diffstat (limited to 'sw/source/core/inc/MarkManager.hxx')
-rw-r--r--sw/source/core/inc/MarkManager.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/source/core/inc/MarkManager.hxx b/sw/source/core/inc/MarkManager.hxx
index e3484a2995c7..479a0ee0f3a9 100644
--- a/sw/source/core/inc/MarkManager.hxx
+++ b/sw/source/core/inc/MarkManager.hxx
@@ -28,6 +28,7 @@
namespace sw {
namespace mark {
+ typedef std::unordered_map<OUString, sal_Int32, OUStringHash> MarkBasenameMapUniqueOffset_t;
class MarkManager
: private ::boost::noncopyable
@@ -110,6 +111,7 @@ namespace sw {
container_t m_vFieldmarks;
std::unordered_set<OUString, OUStringHash> m_aMarkNamesSet;
+ mutable MarkBasenameMapUniqueOffset_t m_aMarkBasenameMapUniqueOffset;
// container for annotation marks
container_t m_vAnnotationMarks;