[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Space.java, 1.163, 1.164
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-07-25 12:44:38
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21756/src/net/sourceforge/bprocessor/model Modified Files: Space.java Log Message: Fors¿g p bugfix Index: Space.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v retrieving revision 1.163 retrieving revision 1.164 diff -C2 -d -r1.163 -r1.164 *** Space.java 23 Jul 2007 13:58:10 -0000 1.163 --- Space.java 25 Jul 2007 12:44:33 -0000 1.164 *************** *** 2235,2238 **** --- 2235,2246 ---- if (surface.getOwner() == this) { if (surface.protect()) { + Space back = surface.getBackDomain(); + if (back != null) { + back.removeSurface(surface); + } + Space front = surface.getFrontDomain(); + if (front != null) { + front.removeSurface(surface); + } remove(surface); } |