diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-04-10 05:51:19 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-04-10 05:55:55 +0200 |
commit | be829fa15777b3b1a6727eee231c89894e7c425e (patch) | |
tree | 24dc7fa1287928f7e5e9e6dae8377b0bc6a8982d /editeng | |
parent | 7b9a5e8124328da9d81aed58cf944c91560a7c07 (diff) |
don't pool SvxFieldItem, tdf#92773
In documents with many different hyperlinks pooling them is incredibly
slow. I doubt that in most cases the hyperlinks are the same so let us
just not pool them.
Change-Id: I2387aee57ef0ab3183d9cc3486ddbf8ca2883e0b
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/editdoc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editdoc.cxx b/editeng/source/editeng/editdoc.cxx index 35f889b7ff9c..f728553e068c 100644 --- a/editeng/source/editeng/editdoc.cxx +++ b/editeng/source/editeng/editdoc.cxx @@ -212,7 +212,7 @@ const SfxItemInfo aItemInfos[EDITITEMCOUNT] = { { 0, true }, // EE_FEATURE_TAB { 0, true }, // EE_FEATURE_LINEBR { SID_ATTR_CHAR_CHARSETCOLOR, true }, // EE_FEATURE_NOTCONV - { SID_FIELD, true } + { SID_FIELD, false } }; const sal_uInt16 aV1Map[] = { |