Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Warning Removal: BuildConsoleView

This patch replaces the deprecated function (Help related)
from the BuildConsoleView.

Thomas
-------------------------------------------------------------
Thomas (toe-mah) Fletcher       QNX Software Systems
thomasf@xxxxxxx                 Core OS Technology Developer
(613)-591-0931                  http://www.qnx.com/
Index: BuildConsoleView.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/BuildConsoleView.java,v
retrieving revision 1.1
diff -u -r1.1 BuildConsoleView.java
--- BuildConsoleView.java	26 Jun 2002 20:55:44 -0000	1.1
+++ BuildConsoleView.java	17 Aug 2002 13:35:50 -0000
@@ -104,7 +104,7 @@
 		initializeContextMenu(parent);
 		initializeToolBar();
 		
-		WorkbenchHelp.setHelp(fTextViewer.getControl(), new ViewContextComputer(this, ICHelpContextIds.CLEAR_CONSOLE_VIEW));
+		WorkbenchHelp.setHelp(fTextViewer.getControl(), ICHelpContextIds.CLEAR_CONSOLE_VIEW);
 	}
 	
 	private void initializeWidgetFont(StyledText styledText) {

Back to the top