From: <ce...@us...> - 2004-01-13 14:14:56
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/editor In directory sc8-pr-cvs1:/tmp/cvs-serv15397/src/net/sourceforge/csseditor/internal/editor Modified Files: CssEditorActionContributor.java Log Message: Remove unnecessary 'this' qualifiers Index: CssEditorActionContributor.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/editor/CssEditorActionContributor.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CssEditorActionContributor.java 27 Dec 2003 18:46:55 -0000 1.2 --- CssEditorActionContributor.java 13 Jan 2004 14:14:53 -0000 1.3 *************** *** 94,107 **** } ! this.contentAssistAction.setAction( getAction(editor, ICssEditorActionConstants.CONTENT_ASSIST)); ! this.showSelectedElementOnlyAction.setEditor(editor); ! this.showSelectedElementOnlyAction.update(); IActionBars bars = getActionBars(); bars.setGlobalActionHandler( ITextEditorActionDefinitionIds.TOGGLE_SHOW_SELECTED_ELEMENT_ONLY, ! this.showSelectedElementOnlyAction); bars.setGlobalActionHandler( ICssEditorActionDefinitionIds.COMMENT, --- 94,107 ---- } ! contentAssistAction.setAction( getAction(editor, ICssEditorActionConstants.CONTENT_ASSIST)); ! showSelectedElementOnlyAction.setEditor(editor); ! showSelectedElementOnlyAction.update(); IActionBars bars = getActionBars(); bars.setGlobalActionHandler( ITextEditorActionDefinitionIds.TOGGLE_SHOW_SELECTED_ELEMENT_ONLY, ! showSelectedElementOnlyAction); bars.setGlobalActionHandler( ICssEditorActionDefinitionIds.COMMENT, |