|
From: JP <j-...@us...> - 2008-02-25 21:20:42
|
Update of /cvsroot/swixat/swixat/src/main/java/org/swixat/framework In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv26742/src/main/java/org/swixat/framework Modified Files: Tag: B0_6_0 SingleOutputView.java Log Message: Fixes a bug with single-instance windows and threaded commands (ie, "thread:command" constructs). Index: SingleOutputView.java =================================================================== RCS file: /cvsroot/swixat/swixat/src/main/java/org/swixat/framework/Attic/SingleOutputView.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 *** SingleOutputView.java 25 Feb 2008 09:42:01 -0000 1.1.2.1 --- SingleOutputView.java 25 Feb 2008 21:20:37 -0000 1.1.2.2 *************** *** 15,20 **** private String windowKey; ! public SingleOutputView(String view, Context context, String windowKey) { ! super(view, context); this.windowKey = windowKey; } --- 15,20 ---- private String windowKey; ! public SingleOutputView(String view, String windowKey) { ! super(view); this.windowKey = windowKey; } |