Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Patch: another typo fix

This fixes another typo.

Tom

Index: src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java,v
retrieving revision 1.3
diff -u -r1.3 CDebuggerPage.java
--- src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java 27 Sep 2002 18:47:15 -0000 1.3
+++ src/org/eclipse/cdt/debug/mi/internal/ui/CDebuggerPage.java 8 Oct 2002 02:35:47 -0000
@@ -50,7 +50,7 @@
 		createVerticalSpacer(comp, 2);
 
 		fAutoSoLibButton = new Button(comp, SWT.CHECK ) ;
-		fAutoSoLibButton.setText("Load shared library symbols automaticly");
+		fAutoSoLibButton.setText("Load shared library symbols automatically");
 		gd = new GridData();
 		gd.horizontalSpan = 2;
 		fAutoSoLibButton.setLayoutData(gd);


Back to the top