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 | 7aebbae28405cfd42be4d2d681942ed395e4e2af (patch) | |
tree | f2ea72018ce7d5952b10e93aedaece0b64b27503 /sw/qa | |
parent | 42576a9b4331120c4735a5d68e4779e61433a3bf (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')
-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 a07b3cccad..8110c82a6e 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)); } |