From f7be9c71d46310b22194461b3dae217df0e41f1e Mon Sep 17 00:00:00 2001 From: Lionel Elie Mamane Date: Sun, 21 Apr 2013 15:53:12 +0200 Subject: janitorial: typo in variable name Change-Id: I0bc68e7a1f589e11f16bc539f49a323e64bd834f --- forms/source/component/ListBox.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'forms/source') diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 4941918b6bed..bd31454d1b55 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -1436,7 +1436,7 @@ namespace frm if ( hasValidator() ) return OBoundControlModel::getCurrentFormComponentValue(); - Any aCurretnValue; + Any aCurrentValue; try { @@ -1447,16 +1447,16 @@ namespace frm OSL_VERIFY( const_cast< OListBoxModel* >( this )->getPropertyValue( PROPERTY_MULTISELECTION ) >>= bMultiSelection ); if ( bMultiSelection ) - aCurretnValue = lcl_getMultiSelectedEntriesAny( aSelectSequence, impl_getValues() ); + aCurrentValue = lcl_getMultiSelectedEntriesAny( aSelectSequence, impl_getValues() ); else - aCurretnValue = lcl_getSingleSelectedEntryAny( aSelectSequence, impl_getValues() ); + aCurrentValue = lcl_getSingleSelectedEntryAny( aSelectSequence, impl_getValues() ); } catch( const Exception& ) { DBG_UNHANDLED_EXCEPTION(); } - return aCurretnValue; + return aCurrentValue; } //-------------------------------------------------------------------- -- cgit v1.2.3