diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-11-27 17:07:33 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-11-27 14:33:57 +0100 |
commit | ec9b555e8094f4552c068820cab633307fcf520f (patch) | |
tree | b99951c661d4ffe34bbd6788671514775e6d6295 /svx/source | |
parent | a2656563f1a7639a99276fda90b6c8f675d20fc5 (diff) |
TSCP: don't put a non-existing name into doc. props
We combined the abbr. name with the name and put that as a value
into doc. properties. This is not correct as such a name doesn't
exist in the BAPolicy and con't be identified anymore, so removing
this.
Also use the values that were put into the ClassificationField
instead of the extracted text.
Change-Id: I3037bc90a7a394d430f7c0cca4d326473eff3147
Reviewed-on: https://gerrit.libreoffice.org/45316
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/dialog/ClassificationDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/ClassificationDialog.cxx b/svx/source/dialog/ClassificationDialog.cxx index aa7f2e778be9..fa5be8da164d 100644 --- a/svx/source/dialog/ClassificationDialog.cxx +++ b/svx/source/dialog/ClassificationDialog.cxx @@ -568,7 +568,7 @@ std::vector<ClassificationResult> ClassificationDialog::getResult() if (pClassificationField) { aClassificationResults.push_back({ pClassificationField->meType, pClassificationField->msFullClassName, - sDisplayString, pClassificationField->msIdentifier }); + pClassificationField->msDescription, pClassificationField->msIdentifier }); } else { |