cid#1327133 UrF: Unread field

Change-Id: Ie910cdc66c5f243f1ba5f4b855154277746a6195
This commit is contained in:
Noel Grandin 2015-10-21 15:16:03 +02:00
parent 7b9f288bfd
commit 0220cdea88

View file

@ -44,16 +44,12 @@ public class _XButton extends MultiMethodTest {
*/
protected static class TestActionListener implements com.sun.star.awt.XActionListener {
public boolean disposingCalled = false ;
public boolean actionPerformedCalled = false ;
public void disposing(com.sun.star.lang.EventObject e) {
disposingCalled = true ;
}
public void actionPerformed(com.sun.star.awt.ActionEvent e) {
actionPerformedCalled = true ;
}
public void actionPerformed(com.sun.star.awt.ActionEvent e) {}
}
TestActionListener listener = new TestActionListener() ;