summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-21 15:16:48 +0200
committerNoel Grandin <noel@peralex.com>2015-10-21 15:26:30 +0200
commitb5cde3be257343bdb381d2e36e882907974d6913 (patch)
tree3204c7a836d87b4771ed95e5bd038bd246c7c17e /qadevOOo
parent0220cdea886a5e7ba940ec0bbae94a58532c3095 (diff)
cid#1327134 UrF: Unread field
Change-Id: Ib6d801b11515259481d4235db9d7a39d5891a289
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/awt/_XCheckBox.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/qadevOOo/tests/java/ifc/awt/_XCheckBox.java b/qadevOOo/tests/java/ifc/awt/_XCheckBox.java
index a675f3551c45..2262cc241683 100644
--- a/qadevOOo/tests/java/ifc/awt/_XCheckBox.java
+++ b/qadevOOo/tests/java/ifc/awt/_XCheckBox.java
@@ -46,16 +46,12 @@ public class _XCheckBox extends MultiMethodTest {
*/
protected static class TestItemListener implements com.sun.star.awt.XItemListener {
public boolean disposingCalled = false ;
- public boolean itemStateChangedCalled = false ;
public void disposing(com.sun.star.lang.EventObject e) {
disposingCalled = true ;
}
- public void itemStateChanged(com.sun.star.awt.ItemEvent e) {
- itemStateChangedCalled = true ;
- }
-
+ public void itemStateChanged(com.sun.star.awt.ItemEvent e) {}
}
TestItemListener listener = new TestItemListener() ;
short state = -1 ;