include/oox/export/vmlexport.hxx | 2 +- sw/qa/extras/ooxmlexport/ooxmlexport9.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 1ba1bb96659d0048bff2a9a15646f6e1e04bd2c4 Author: Andrea Gelmini <[email protected]> Date: Tue Aug 22 23:09:28 2017 +0200 Fix typos Change-Id: Ic78d3e15c5e58f1306f8448c0806db275b3ae616 Reviewed-on: https://gerrit.libreoffice.org/41435 Reviewed-by: Adolfo Jayme Barrientos <[email protected]> Tested-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/include/oox/export/vmlexport.hxx b/include/oox/export/vmlexport.hxx index ee40b933deaa..99313638374c 100644 --- a/include/oox/export/vmlexport.hxx +++ b/include/oox/export/vmlexport.hxx @@ -116,7 +116,7 @@ class OOX_DLLPUBLIC VMLExport : public EscherEx */ bool m_bOverrideShapeIdGeneration; - /// Prefix for overriden shape id generation (used if m_bOverrideShapeIdGeneration is true) + /// Prefix for overridden shape id generation (used if m_bOverrideShapeIdGeneration is true) OString m_sShapeIDPrefix; /// Counter for generating shape ids (used if m_bOverrideShapeIdGeneration is true) diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx index f19fb6b65d76..9821751bd668 100644 --- a/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx +++ b/sw/qa/extras/ooxmlexport/ooxmlexport9.cxx @@ -872,7 +872,7 @@ DECLARE_OOXMLEXPORT_TEST(testActiveXControlAlign, "activex_control_align.odt") uno::Reference<beans::XPropertySet> xPropertySet2(xControlShape, uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AT_CHARACTER,getProperty<text::TextContentAnchorType>(xPropertySet2,"AnchorType")); - // Also check positin and size + // Also check position and size uno::Reference<drawing::XShape> xShape(xControlShape, uno::UNO_QUERY); CPPUNIT_ASSERT(xShape.is()); CPPUNIT_ASSERT_EQUAL(sal_Int32(4470), xShape->getSize().Width); @@ -894,7 +894,7 @@ DECLARE_OOXMLEXPORT_TEST(testActiveXControlAlign, "activex_control_align.odt") CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AS_CHARACTER,getProperty<text::TextContentAnchorType>(xPropertySet2,"AnchorType")); CPPUNIT_ASSERT_EQUAL(sal_Int32(text::VertOrientation::TOP),getProperty<sal_Int32>(xPropertySet2,"VertOrient")); - // Also check positin and size + // Also check position and size xShape.set(xControlShape, uno::UNO_QUERY); CPPUNIT_ASSERT(xShape.is()); CPPUNIT_ASSERT_EQUAL(sal_Int32(4410), xShape->getSize().Width); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
