|
From: JP <j-...@us...> - 2008-02-25 21:20:42
|
Update of /cvsroot/swixat/swixat/src/main/java/org/swixat/commands In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv26742/src/main/java/org/swixat/commands Modified Files: Tag: B0_6_0 SingleWindowCommand.java Log Message: Fixes a bug with single-instance windows and threaded commands (ie, "thread:command" constructs). Index: SingleWindowCommand.java =================================================================== RCS file: /cvsroot/swixat/swixat/src/main/java/org/swixat/commands/Attic/SingleWindowCommand.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** SingleWindowCommand.java 25 Feb 2008 09:42:01 -0000 1.1.2.1 --- SingleWindowCommand.java 25 Feb 2008 21:20:37 -0000 1.1.2.2 *************** *** 27,31 **** CommandBinder cb = (CommandBinder) SwiXAT.getFactory().getBean(command); String view = cb.getOutput(); ! return new SingleOutputView(view, context, command); } } --- 27,31 ---- CommandBinder cb = (CommandBinder) SwiXAT.getFactory().getBean(command); String view = cb.getOutput(); ! return new SingleOutputView(view, command); } } |