[Nice-commit] swing/src/nice/ui/common common.nice,1.3,1.4
Brought to you by:
bonniot
|
From: <ar...@us...> - 2003-03-20 15:32:48
|
Update of /cvsroot/nice/swing/src/nice/ui/common
In directory sc8-pr-cvs1:/tmp/cvs-serv27770/D:/nice/nice/ui/common
Modified Files:
common.nice
Log Message:
Make NiceSwing compile again with the current version of the compiler.
Index: common.nice
===================================================================
RCS file: /cvsroot/nice/swing/src/nice/ui/common/common.nice,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** common.nice 13 Nov 2002 02:22:28 -0000 1.3
--- common.nice 20 Mar 2003 15:21:26 -0000 1.4
***************
*** 92,96 ****
{
list = new LinkedList();
! list.add(listener);
map.put(key.object(),list);
}
--- 92,96 ----
{
list = new LinkedList();
! notNull(list).add(listener);
map.put(key.object(),list);
}
***************
*** 115,119 ****
{
list = new LinkedList();
! list.add(listener);
map.put((this.object(),key),list);
}
--- 115,119 ----
{
list = new LinkedList();
! notNull(list).add(listener);
map.put((this.object(),key),list);
}
|