still more work on sketchbook, now starting to look at exceptions

This commit is contained in:
benfry
2004-01-17 00:33:02 +00:00
parent 0caeaeda9f
commit f9f8d3cb94
4 changed files with 168 additions and 104 deletions

View File

@@ -2,7 +2,7 @@
/*
PdeHistory - handler for storing history information about a project
Part of the Processing project - http://Proce55ing.net
Part of the Processing project - http://processing.org
Except where noted, code is written by Ben Fry
Copyright (c) 2001-03 Massachusetts Institute of Technology
@@ -22,6 +22,10 @@
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef BEN_COULD_EVER_FINISH_SIXTY_EIGHT
import java.awt.*;
import java.awt.event.*;
import java.io.*;
@@ -55,8 +59,8 @@ public class PdeHistory {
ActionListener menuListener;
public PdeHistory(PdeEditor editor) {
this.editor = editor;
public PdeHistory(Sketch sketch) {
//this.editor = editor;
menu = new JMenu("History");
@@ -352,3 +356,6 @@ public class PdeHistory {
}
}
}
#endif