diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-09-02 15:08:52 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-09-02 16:05:01 +0200 |
commit | 0dc237953c79053495d1e98b4aa2745e25cee0d2 (patch) | |
tree | f3a0d7c549321988f997ebf52216d161bc134efa /chart2 | |
parent | 16c5e23894052a822a47b650cc3363ac7454c060 (diff) |
Typos for "available"
Change-Id: I8050b1f2ea5414b6e6da3392e8e22d330c794ff5
Reviewed-on: https://gerrit.libreoffice.org/41836
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/res_DataLabel.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/dialogs/res_DataLabel.cxx b/chart2/source/controller/dialogs/res_DataLabel.cxx index 74c4e786c1b0..d04eed5a484e 100644 --- a/chart2/source/controller/dialogs/res_DataLabel.cxx +++ b/chart2/source/controller/dialogs/res_DataLabel.cxx @@ -131,16 +131,16 @@ DataLabelResources::DataLabelResources(VclBuilderContainer* pWindow, vcl::Window aPlacementToStringMap[nEnum] = m_pLB_LabelPlacement->GetEntry(static_cast<sal_uInt16>(nEnum)); - std::vector< sal_Int32 > aAvailabelPlacementList; + std::vector< sal_Int32 > aAvailablePlacementList; const SfxPoolItem *pPoolItem = nullptr; if( rInAttrs.GetItemState(SCHATTR_DATADESCR_AVAILABLE_PLACEMENTS, true, &pPoolItem) == SfxItemState::SET ) - aAvailabelPlacementList = static_cast<const SfxIntegerListItem*>(pPoolItem)->GetList(); + aAvailablePlacementList = static_cast<const SfxIntegerListItem*>(pPoolItem)->GetList(); m_pLB_LabelPlacement->Clear(); - for( size_t nN=0; nN<aAvailabelPlacementList.size(); ++nN ) + for( size_t nN=0; nN<aAvailablePlacementList.size(); ++nN ) { sal_uInt16 nListBoxPos = static_cast<sal_uInt16>( nN ); - sal_Int32 nPlacement = aAvailabelPlacementList[nN]; + sal_Int32 nPlacement = aAvailablePlacementList[nN]; m_aPlacementToListBoxMap[nPlacement]=nListBoxPos; m_aListBoxToPlacementMap[nListBoxPos]=nPlacement; m_pLB_LabelPlacement->InsertEntry( aPlacementToStringMap[nPlacement] ); |