diff options
author | Noel Power <noel.power@suse.com> | 2013-04-23 18:13:37 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-05-09 14:11:18 +0100 |
commit | 4bad1a8e314269f2538133eb241135a225ac3f4f (patch) | |
tree | b608bf79ffd0b34bd74d142cd89bb58cda498618 /vbahelper/source/msforms/vbacombobox.cxx | |
parent | 3fb03cc873280c49e04c59062c1ad21b53c7f5df (diff) |
support api initiated change_event for combox & textbox
Change-Id: Iff51a184792e9d12accb902df1772fc07589443b
Diffstat (limited to 'vbahelper/source/msforms/vbacombobox.cxx')
-rw-r--r-- | vbahelper/source/msforms/vbacombobox.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vbahelper/source/msforms/vbacombobox.cxx b/vbahelper/source/msforms/vbacombobox.cxx index 30f72379380b..6933884baf55 100644 --- a/vbahelper/source/msforms/vbacombobox.cxx +++ b/vbahelper/source/msforms/vbacombobox.cxx @@ -120,7 +120,11 @@ void SAL_CALL ScVbaComboBox::setValue( const uno::Any& _value ) throw (uno::RuntimeException) { // booleans are converted to uppercase strings + OUString oldValue = extractStringFromAny( getValue(), OUString(), true ); m_xProps->setPropertyValue( sSourceName, uno::Any( extractStringFromAny( _value, OUString(), true ) ) ); + OUString newValue = extractStringFromAny( getValue(), OUString(), true ); + if ( oldValue != newValue ) + fireChangeEvent(); } // see Value |