summaryrefslogtreecommitdiff
path: root/patches/vba/vba-fix-checkbox-ole-access.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/vba/vba-fix-checkbox-ole-access.diff')
-rw-r--r--patches/vba/vba-fix-checkbox-ole-access.diff13
1 files changed, 0 insertions, 13 deletions
diff --git a/patches/vba/vba-fix-checkbox-ole-access.diff b/patches/vba/vba-fix-checkbox-ole-access.diff
deleted file mode 100644
index 6c9094ef9..000000000
--- a/patches/vba/vba-fix-checkbox-ole-access.diff
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git vbahelper/source/msforms/vbacontrol.cxx vbahelper/source/msforms/vbacontrol.cxx
-index 3503631..623b0cd 100644
---- vbahelper/source/msforms/vbacontrol.cxx
-+++ vbahelper/source/msforms/vbacontrol.cxx
-@@ -416,6 +416,8 @@ ScVbaControl* ScVbaControlFactory::createControl(const uno::Reference< drawing::
- return new ScVbaLabel( xVbaParent, m_xContext, xControlShape, m_xModel, new ConcreteXShapeGeometryAttributes( m_xContext, uno::Reference< drawing::XShape >( xControlShape, uno::UNO_QUERY_THROW ) ) );
- case form::FormComponentType::TEXTFIELD:
- return new ScVbaTextBox( xVbaParent, m_xContext, xControlShape, m_xModel, new ConcreteXShapeGeometryAttributes( m_xContext, uno::Reference< drawing::XShape >( xControlShape, uno::UNO_QUERY_THROW ) ) );
-+ case form::FormComponentType::CHECKBOX:
-+ return new ScVbaCheckbox( xVbaParent, m_xContext, xControlShape, m_xModel, new ConcreteXShapeGeometryAttributes( m_xContext, uno::Reference< drawing::XShape >( xControlShape, uno::UNO_QUERY_THROW ) ) );
- case form::FormComponentType::RADIOBUTTON:
- return new ScVbaRadioButton( xVbaParent, m_xContext, xControlShape, m_xModel, new ConcreteXShapeGeometryAttributes( m_xContext, uno::Reference< drawing::XShape >( xControlShape, uno::UNO_QUERY_THROW ) ) );
- case form::FormComponentType::LISTBOX: