diff options
author | Michael Stahl <mst@openoffice.org> | 2010-01-08 17:13:49 +0100 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2010-01-08 17:13:49 +0100 |
commit | e9ca667fa65f946acec102e3932372010b8622bd (patch) | |
tree | 31b08e6d80c537aa0ecaabf477c67bcd539c1175 /sw/qa/complex/writer | |
parent | 6e3f9b6a9a1f70811e393d10a21addfaeedc174e (diff) |
swunolocking1: refactor Meta registration at its text node.
Meta will now be registered via SwTxtMeta::ChgTxtNode(), with additional
workarounds necessary in SwFmtMeta::DoCopy().
Diffstat (limited to 'sw/qa/complex/writer')
-rwxr-xr-x | sw/qa/complex/writer/TextPortionEnumerationTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/complex/writer/TextPortionEnumerationTest.java b/sw/qa/complex/writer/TextPortionEnumerationTest.java index a07b3cccadef..8110c82a6e58 100755 --- a/sw/qa/complex/writer/TextPortionEnumerationTest.java +++ b/sw/qa/complex/writer/TextPortionEnumerationTest.java @@ -3097,7 +3097,7 @@ public class TextPortionEnumerationTest extends ComplexTestCase XPropertySet xPropSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xPortion); String type = (String) xPropSet.getPropertyValue("TextPortionType"); - assure("first: not text", type.equals("Text")); + assure("first: not text: " + type, type.equals("Text")); String txt = xPortion.getString(); assure("first: text differs: " + txt, "45".equals(txt)); } |