summaryrefslogtreecommitdiff
path: root/framework/source/uielement/comboboxtoolbarcontroller.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 16:03:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-25 17:19:22 +0200
commitd116894b26f538793a0d5dc5847efd2fb53e7acb (patch)
tree5d99d51c14bccc6a08d646b32246814c8b1bd61d /framework/source/uielement/comboboxtoolbarcontroller.cxx
parent3361e28f944d9f752f0e0df91968559f1ae55f72 (diff)
loplugin:oncevar in formula..framework
Change-Id: I96d6af49c1994ebd7d6dcc41469127e3151b4350 Reviewed-on: https://gerrit.libreoffice.org/39186 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/source/uielement/comboboxtoolbarcontroller.cxx')
-rw-r--r--framework/source/uielement/comboboxtoolbarcontroller.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/source/uielement/comboboxtoolbarcontroller.cxx b/framework/source/uielement/comboboxtoolbarcontroller.cxx
index 1e80d29e661d..8f37f6d4f690 100644
--- a/framework/source/uielement/comboboxtoolbarcontroller.cxx
+++ b/framework/source/uielement/comboboxtoolbarcontroller.cxx
@@ -263,14 +263,13 @@ void ComboboxToolbarController::executeControlCommand( const css::frame::Control
}
else if ( rControlCommand.Command == "AddEntry" )
{
- sal_Int32 nPos( COMBOBOX_APPEND );
OUString aText;
for ( sal_Int32 i = 0; i < rControlCommand.Arguments.getLength(); i++ )
{
if ( rControlCommand.Arguments[i].Name == "Text" )
{
if ( rControlCommand.Arguments[i].Value >>= aText )
- m_pComboBox->InsertEntry( aText, nPos );
+ m_pComboBox->InsertEntry( aText, COMBOBOX_APPEND );
break;
}
}