### Eclipse Workspace Patch 1.0 #P org.eclipse.cdt.core Index: model/org/eclipse/cdt/internal/core/model/CoreModelMessages.properties =================================================================== RCS file: /cvsroot/tools/org.eclipse.cdt-core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/CoreModelMessages.properties,v retrieving revision 1.9 diff -u -r1.9 CoreModelMessages.properties --- model/org/eclipse/cdt/internal/core/model/CoreModelMessages.properties 20 Apr 2007 14:47:13 -0000 1.9 +++ model/org/eclipse/cdt/internal/core/model/CoreModelMessages.properties 2 Jun 2007 19:10:39 -0000 @@ -18,7 +18,7 @@ operation.needAbsolutePath = Operation requires an absolute path. Relative path specified was: ''{0}'' operation.needString = Operation requires a String. operation.notSupported = Operation not supported for specified element type(s): -operation.cancelled = Operation cancelled. +operation.canceled = Operation canceled. operation.nullContainer = Container cannot be null. operation.nullName = Name cannot be null. operation.copyElementProgress = Copying elements... @@ -79,10 +79,10 @@ PathEntryManager.1=Workspace include path inaccessible ({0}) PathEntryManager.7=Workspace library path inaccessible ({0}) -CElementLabels.anonymous=(anon) +CElementLabels.anonymous=(anonymous) CElementLabels.concat_string=\ -\ CElementLabels.comma_string=,\ CElementLabels.declseparator_string=\ :\ -CProjectDescriptionManager.startRcChangeHandling=Initiating resource change handling.. -CProjectDescriptionManager.serializing=Serialing CDT Project settings.. +CProjectDescriptionManager.startRcChangeHandling=Initiating resource change handling... +CProjectDescriptionManager.serializing=Saving CDT Project settings... Index: model/org/eclipse/cdt/internal/core/model/CModelOperation.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.cdt-core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/CModelOperation.java,v retrieving revision 1.15 diff -u -r1.15 CModelOperation.java --- model/org/eclipse/cdt/internal/core/model/CModelOperation.java 23 Jun 2006 17:52:41 -0000 1.15 +++ model/org/eclipse/cdt/internal/core/model/CModelOperation.java 2 Jun 2007 19:10:39 -0000 @@ -212,12 +212,12 @@ * should be canceled. An operation should regularly call this method * during its operation so that the user can cancel it. * - * @exception OperationCanceledException if cancelling the operation has been requested + * @exception OperationCanceledException if canceling the operation has been requested * @see IProgressMonitor#isCanceled */ protected void checkCanceled() { if (isCanceled()) { - throw new OperationCanceledException("operation.cancelled"); //$NON-NLS-1$ + throw new OperationCanceledException("operation.canceled"); //$NON-NLS-1$ } }