summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/oox/export/vmlexport.hxx2
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport9.cxx4
2 files changed, 3 insertions, 3 deletions
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);