summaryrefslogtreecommitdiff
path: root/svx/source/dialog/ClassificationDialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/ClassificationDialog.cxx')
-rw-r--r--svx/source/dialog/ClassificationDialog.cxx76
1 files changed, 38 insertions, 38 deletions
diff --git a/svx/source/dialog/ClassificationDialog.cxx b/svx/source/dialog/ClassificationDialog.cxx
index ad6d6ded5074..55dc11c86a50 100644
--- a/svx/source/dialog/ClassificationDialog.cxx
+++ b/svx/source/dialog/ClassificationDialog.cxx
@@ -575,55 +575,55 @@ std::vector<ClassificationResult> ClassificationDialog::getResult()
IMPL_LINK(ClassificationDialog, SelectClassificationHdl, ListBox&, rBox, void)
{
const sal_Int32 nSelected = rBox.GetSelectedEntryPos();
- if (nSelected >= 0 && m_nCurrentSelectedCategory != nSelected)
- {
- std::unique_ptr<EditTextObject> pEditText(m_pEditWindow->pEdEngine->CreateTextObject());
- std::vector<editeng::Section> aSections;
- pEditText->GetAllSections(aSections);
+ if (nSelected < 0 || m_nCurrentSelectedCategory == nSelected)
+ return;
+
+ std::unique_ptr<EditTextObject> pEditText(m_pEditWindow->pEdEngine->CreateTextObject());
+ std::vector<editeng::Section> aSections;
+ pEditText->GetAllSections(aSections);
- // if we are replacing an existing field
- bool bReplaceExisting = false;
- // selection of the existing field, which will be replaced
- ESelection aExistingFieldSelection;
+ // if we are replacing an existing field
+ bool bReplaceExisting = false;
+ // selection of the existing field, which will be replaced
+ ESelection aExistingFieldSelection;
- for (editeng::Section const & rSection : aSections)
+ for (editeng::Section const & rSection : aSections)
+ {
+ const SvxFieldItem* pFieldItem = findField(rSection);
+ if (pFieldItem)
{
- const SvxFieldItem* pFieldItem = findField(rSection);
- if (pFieldItem)
+ const ClassificationField* pClassificationField = dynamic_cast<const ClassificationField*>(pFieldItem->GetField());
+ if (pClassificationField && pClassificationField->meType == ClassificationType::CATEGORY)
{
- const ClassificationField* pClassificationField = dynamic_cast<const ClassificationField*>(pFieldItem->GetField());
- if (pClassificationField && pClassificationField->meType == ClassificationType::CATEGORY)
- {
- aExistingFieldSelection = ESelection(rSection.mnParagraph, rSection.mnStart,
- rSection.mnParagraph, rSection.mnEnd);
- bReplaceExisting = true;
- }
+ aExistingFieldSelection = ESelection(rSection.mnParagraph, rSection.mnStart,
+ rSection.mnParagraph, rSection.mnEnd);
+ bReplaceExisting = true;
}
}
+ }
- if (bReplaceExisting)
+ if (bReplaceExisting)
+ {
+ ScopedVclPtrInstance<QueryBox> aQueryBox(this, MessBoxStyle::YesNo | MessBoxStyle::DefaultYes, SvxResId(RID_CLASSIFICATION_CHANGE_CATEGORY));
+ if (aQueryBox->Execute() == RET_NO)
{
- ScopedVclPtrInstance<QueryBox> aQueryBox(this, MessBoxStyle::YesNo | MessBoxStyle::DefaultYes, SvxResId(RID_CLASSIFICATION_CHANGE_CATEGORY));
- if (aQueryBox->Execute() == RET_NO)
- {
- // Revert to previosuly selected
- m_pInternationalClassificationListBox->SelectEntryPos(m_nCurrentSelectedCategory);
- m_pClassificationListBox->SelectEntryPos(m_nCurrentSelectedCategory);
- return;
- }
- m_pEditWindow->pEdView->SetSelection(aExistingFieldSelection);
+ // Revert to previosuly selected
+ m_pInternationalClassificationListBox->SelectEntryPos(m_nCurrentSelectedCategory);
+ m_pClassificationListBox->SelectEntryPos(m_nCurrentSelectedCategory);
+ return;
}
+ m_pEditWindow->pEdView->SetSelection(aExistingFieldSelection);
+ }
- const OUString aFullString = maHelper.GetBACNames()[nSelected];
- const OUString aAbbreviatedString = maHelper.GetAbbreviatedBACNames()[nSelected];
- const OUString aIdentifierString = maHelper.GetBACIdentifiers()[nSelected];
- insertField(ClassificationType::CATEGORY, aAbbreviatedString, aFullString, aIdentifierString);
+ const OUString aFullString = maHelper.GetBACNames()[nSelected];
+ const OUString aAbbreviatedString = maHelper.GetAbbreviatedBACNames()[nSelected];
+ const OUString aIdentifierString = maHelper.GetBACIdentifiers()[nSelected];
+ insertField(ClassificationType::CATEGORY, aAbbreviatedString, aFullString, aIdentifierString);
- // Change category to the new selection
- m_pInternationalClassificationListBox->SelectEntryPos(nSelected);
- m_pClassificationListBox->SelectEntryPos(nSelected);
- m_nCurrentSelectedCategory = nSelected;
- }
+ // Change category to the new selection
+ m_pInternationalClassificationListBox->SelectEntryPos(nSelected);
+ m_pClassificationListBox->SelectEntryPos(nSelected);
+ m_nCurrentSelectedCategory = nSelected;
}
IMPL_LINK(ClassificationDialog, SelectMarkingHdl, ListBox&, rBox, void)