diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-21 15:53:12 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-22 17:55:24 +0200 |
commit | f7be9c71d46310b22194461b3dae217df0e41f1e (patch) | |
tree | 1f301c48238ae13c9722ebf3888bf3bd9ee00bd5 /forms | |
parent | 0ed5028e8e5b782d63b2d00602e7ef52f0e4d016 (diff) |
janitorial: typo in variable name
Change-Id: I0bc68e7a1f589e11f16bc539f49a323e64bd834f
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/ListBox.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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; } //-------------------------------------------------------------------- |