diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-10 10:08:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-10 10:08:35 +0200 |
commit | 1f7a31a461bb3a6fcd277ab57875405875568f8b (patch) | |
tree | 60cf03a6af789cd8540783fbeedfdac79ed1e9f2 /forms | |
parent | 021bba1b9d9d0e483a76607aaafaf7eb81ff6bed (diff) |
Missing break in switch
Apparently forgotten when introducing the case PROPERTY_ID_GENERATEVBAEVENTS in
4fae740db79d4e7cc97440e2bab8d1ef612d9b51 "Disable fake VBA events for the
old-style form controls."
Change-Id: Id2783fd4f087669bd200a9c33eaad2bb6b7b50cd
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/FormComponent.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index e33cfb11df08..27ddd31e27e3 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -923,6 +923,7 @@ void OControlModel::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) con break; case PROPERTY_ID_GENERATEVBAEVENTS: _rValue <<= m_bGenerateVbEvents; + break; // added for exporting OCX control case PROPERTY_ID_CONTROL_TYPE_IN_MSO: _rValue <<= (sal_Int16)m_nControlTypeinMSO; |