[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui GUI.java, 1.100, 1.101
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2008-11-03 13:14:19
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2351/src/net/sourceforge/bprocessor/gui Modified Files: GUI.java Log Message: Refactor Index: GUI.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/GUI.java,v retrieving revision 1.100 retrieving revision 1.101 diff -C2 -d -r1.100 -r1.101 *** GUI.java 8 May 2008 10:22:03 -0000 1.100 --- GUI.java 3 Nov 2008 13:14:12 -0000 1.101 *************** *** 34,37 **** --- 34,38 ---- import net.sourceforge.bprocessor.model.Selection; import net.sourceforge.bprocessor.model.Container; + import net.sourceforge.bprocessor.model.Space; import net.sourceforge.bprocessor.model.Surface; import net.sourceforge.bprocessor.model.Vertex; *************** *** 314,318 **** AbstractAction action = new AbstractAction("Union") { public void actionPerformed(ActionEvent e) { ! Container union = new Container("Union", Container.CONSTRUCTION, true); union.setUnion(true); Container active = Project.getInstance().getActiveSpace(); --- 315,319 ---- AbstractAction action = new AbstractAction("Union") { public void actionPerformed(ActionEvent e) { ! Container union = Space.createConstructionSpace("Union"); union.setUnion(true); Container active = Project.getInstance().getActiveSpace(); |