diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-31 14:41:23 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-09-01 19:54:59 +0200 |
commit | 62ca189dbc9d21a11fd638245c3c2abd438d39ac (patch) | |
tree | 1bc2bc6c0deb365e327c3d8f1ec5e59088dfd230 /toolkit | |
parent | f700902e903ee610cb5ff58769ee4ca345b4f696 (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: I5beec4b326b7f59103de374dff8169718defc8ea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101779
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/controls/unocontrolcontainer.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/source/controls/unocontrolcontainer.cxx b/toolkit/source/controls/unocontrolcontainer.cxx index 552b9ee52af8..b1d0454fc492 100644 --- a/toolkit/source/controls/unocontrolcontainer.cxx +++ b/toolkit/source/controls/unocontrolcontainer.cxx @@ -184,11 +184,11 @@ void UnoControlHolderList::getControls( uno::Sequence< uno::Reference< awt::XCon void UnoControlHolderList::getIdentifiers( uno::Sequence< sal_Int32 >& _out_rIdentifiers ) const { _out_rIdentifiers.realloc( maControls.size() ); - sal_Int32* pIndentifiers = _out_rIdentifiers.getArray(); + sal_Int32* pIdentifiers = _out_rIdentifiers.getArray(); for (const auto& rEntry : maControls) { - *pIndentifiers = rEntry.first; - ++pIndentifiers; + *pIdentifiers = rEntry.first; + ++pIdentifiers; } } |