[Pydev-cvs] org.python.pydev/src/org/python/pydev/outline PyOutlinePage.java,1.7,1.8
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-05-07 02:07:29
|
Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/outline In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14127/src/org/python/pydev/outline Modified Files: PyOutlinePage.java Log Message: Breakpoints, first cut Index: PyOutlinePage.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/outline/PyOutlinePage.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PyOutlinePage.java 10 Apr 2004 01:48:12 -0000 1.7 --- PyOutlinePage.java 7 May 2004 02:07:20 -0000 1.8 *************** *** 26,29 **** --- 26,30 ---- import org.python.pydev.editor.PyEdit; import org.python.pydev.editor.model.AbstractNode; + import org.python.pydev.plugin.PydevPlugin; import org.python.pydev.ui.ImageCache; import org.python.pydev.ui.UIConstants; *************** *** 51,55 **** IDocument document; IOutlineModel model; ! ImageCache imageCache = new ImageCache(); // listeners to rawPartition --- 52,56 ---- IDocument document; IOutlineModel model; ! ImageCache imageCache; // listeners to rawPartition *************** *** 59,62 **** --- 60,64 ---- super(); this.editorView = editorView; + imageCache = new ImageCache(PydevPlugin.getDefault().getDescriptor().getInstallURL()); } |