From: <ce...@us...> - 2004-01-13 16:18:41
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/editor In directory sc8-pr-cvs1:/tmp/cvs-serv17970/src/net/sourceforge/csseditor/internal/editor Modified Files: CssEditor.java Log Message: Don't update the outline page when the file is saved, it will update anyway with the next reconcile. Fixes bug #876168. Index: CssEditor.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/editor/CssEditor.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CssEditor.java 13 Jan 2004 14:13:53 -0000 1.4 --- CssEditor.java 13 Jan 2004 16:18:39 -0000 1.5 *************** *** 198,210 **** /* - * @see org.eclipse.ui.texteditor.AbstractTextEditor#editorSaved() - */ - protected void editorSaved() { - if (outlinePage != null) { - outlinePage.update(); - } - } - - /* * @see org.eclipse.ui.texteditor.AbstractTextEditor#getAdapter(Class) */ --- 198,201 ---- |