From 3182d9d7a94571466c421deee91d5edc1a1432dc Mon Sep 17 00:00:00 2001 From: Mark Johnson Date: Fri, 25 Aug 2006 00:52:45 +0000 Subject: [PATCH] Let's make sure these compile git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@61 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/java/com/threerings/stage/tools/editor/EditorApp.java | 2 +- src/java/com/threerings/stage/tools/viewer/ViewerApp.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/stage/tools/editor/EditorApp.java b/src/java/com/threerings/stage/tools/editor/EditorApp.java index 5f4536f3..3481ff6a 100644 --- a/src/java/com/threerings/stage/tools/editor/EditorApp.java +++ b/src/java/com/threerings/stage/tools/editor/EditorApp.java @@ -89,7 +89,7 @@ public class EditorApp implements Runnable _frame = createEditorFrame(); // create our frame manager - _framemgr = FrameManager.newInstance(_frame, _frame); + _framemgr = FrameManager.newInstance(_frame); // create our myriad managers, repositories, etc. _rmgr = new ResourceManager("rsrc"); diff --git a/src/java/com/threerings/stage/tools/viewer/ViewerApp.java b/src/java/com/threerings/stage/tools/viewer/ViewerApp.java index e8b11e82..e575d7df 100644 --- a/src/java/com/threerings/stage/tools/viewer/ViewerApp.java +++ b/src/java/com/threerings/stage/tools/viewer/ViewerApp.java @@ -76,7 +76,7 @@ public class ViewerApp _mesgmgr = new MessageManager("rsrc.i18n"); _frame = new ViewerFrame(gc); - _framemgr = FrameManager.newInstance(_frame, _frame); + _framemgr = FrameManager.newInstance(_frame); StageContext ctx = new ContextImpl(); _frame.init(ctx, new CharacterManager(_imgr, _crepo));