diff options
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/complex/writer/LoadSaveTest.java | 6 | ||||
-rw-r--r-- | sw/qa/complex/writer/TextPortionEnumerationTest.java | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/qa/complex/writer/LoadSaveTest.java b/sw/qa/complex/writer/LoadSaveTest.java index f617a93d8b42..e2ae7ab21b48 100644 --- a/sw/qa/complex/writer/LoadSaveTest.java +++ b/sw/qa/complex/writer/LoadSaveTest.java @@ -148,10 +148,10 @@ public class LoadSaveTest } } - class EventListener implements XDocumentEventListener + private class EventListener implements XDocumentEventListener { - boolean m_isLayoutFinished = false; - boolean IsLayoutFinished() { return m_isLayoutFinished; } + private boolean m_isLayoutFinished = false; + private boolean IsLayoutFinished() { return m_isLayoutFinished; } public void documentEventOccured(DocumentEvent Event) { if ("OnLayoutFinished".equals(Event.EventName)) diff --git a/sw/qa/complex/writer/TextPortionEnumerationTest.java b/sw/qa/complex/writer/TextPortionEnumerationTest.java index ed5885b0a51a..db99d695d35f 100644 --- a/sw/qa/complex/writer/TextPortionEnumerationTest.java +++ b/sw/qa/complex/writer/TextPortionEnumerationTest.java @@ -3365,7 +3365,7 @@ public class TextPortionEnumerationTest assertEquals("gotoEndOfWord(): wrong string", "Text", string); } - abstract class AttachHelper + private abstract class AttachHelper { abstract boolean isAttribute(); abstract TreeNode mkTreeNode(); |