[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui GUI.java, 1.70, 1.71
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-07-16 12:23:05
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3682/src/net/sourceforge/bprocessor/gui Modified Files: GUI.java Log Message: Small changes.. Index: GUI.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/GUI.java,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** GUI.java 19 Jun 2007 13:46:14 -0000 1.70 --- GUI.java 16 Jul 2007 12:22:47 -0000 1.71 *************** *** 427,435 **** editDelete.addActionListener(new EditAction() { public void actionPerformed(ActionEvent arg0) { ! Collection c = Selection.primary(); ! Iterator iter = c.iterator(); ! while (iter.hasNext()) { ! Geometric g = (Geometric)iter.next(); ! g.delete(); } } --- 427,433 ---- editDelete.addActionListener(new EditAction() { public void actionPerformed(ActionEvent arg0) { ! Collection<Geometric> selection = Selection.primary(); ! for (Geometric current : selection) { ! current.delete(); } } |