From: Florian L. <fle...@us...> - 2005-06-02 00:13:22
|
Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/model/node In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20780/src/net/sf/magicmap/client/model/node Modified Files: Node.java Log Message: - fixed not-showing-right-Measurement-bug in MapView - fixed update tree in OutlineView - implemented alphabetical-orderd-input-method for OutlineView - fixed remove-all-nodes-method in OutlineView when loading a new map - implemented scrollpane for OutlineView Index: Node.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/model/node/Node.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Node.java 16 Jan 2005 16:01:26 -0000 1.1 --- Node.java 2 Jun 2005 00:13:12 -0000 1.2 *************** *** 63,67 **** String oldname = this.name; this.name = name; ! model.rehashNode(this, oldname); } --- 63,68 ---- String oldname = this.name; this.name = name; ! if (model.nodeExists(oldname)) ! model.rehashNode(this, oldname); } |