View | Details | Raw Unified | Return to bug 190664
Collapse All | Expand All

(-)model/org/eclipse/cdt/internal/core/model/CoreModelMessages.properties (-4 / +4 lines)
Lines 18-24 Link Here
18
operation.needAbsolutePath = Operation requires an absolute path. Relative path specified was: ''{0}''
18
operation.needAbsolutePath = Operation requires an absolute path. Relative path specified was: ''{0}''
19
operation.needString = Operation requires a String.
19
operation.needString = Operation requires a String.
20
operation.notSupported = Operation not supported for specified element type(s):
20
operation.notSupported = Operation not supported for specified element type(s):
21
operation.cancelled = Operation cancelled.
21
operation.canceled = Operation canceled.
22
operation.nullContainer = Container cannot be null.
22
operation.nullContainer = Container cannot be null.
23
operation.nullName = Name cannot be null.
23
operation.nullName = Name cannot be null.
24
operation.copyElementProgress = Copying elements...
24
operation.copyElementProgress = Copying elements...
Lines 79-88 Link Here
79
PathEntryManager.1=Workspace include path inaccessible ({0})
79
PathEntryManager.1=Workspace include path inaccessible ({0})
80
PathEntryManager.7=Workspace library path inaccessible ({0})
80
PathEntryManager.7=Workspace library path inaccessible ({0})
81
81
82
CElementLabels.anonymous=(anon)
82
CElementLabels.anonymous=(anonymous)
83
CElementLabels.concat_string=\ -\ 
83
CElementLabels.concat_string=\ -\ 
84
CElementLabels.comma_string=,\ 
84
CElementLabels.comma_string=,\ 
85
CElementLabels.declseparator_string=\ :\ 
85
CElementLabels.declseparator_string=\ :\ 
86
86
87
CProjectDescriptionManager.startRcChangeHandling=Initiating resource change handling..
87
CProjectDescriptionManager.startRcChangeHandling=Initiating resource change handling...
88
CProjectDescriptionManager.serializing=Serialing CDT Project settings.. 
88
CProjectDescriptionManager.serializing=Saving CDT Project settings...
(-)model/org/eclipse/cdt/internal/core/model/CModelOperation.java (-2 / +2 lines)
Lines 212-223 Link Here
212
	 * should be canceled. An operation should regularly call this method
212
	 * should be canceled. An operation should regularly call this method
213
	 * during its operation so that the user can cancel it.
213
	 * during its operation so that the user can cancel it.
214
	 *
214
	 *
215
	 * @exception OperationCanceledException if cancelling the operation has been requested
215
	 * @exception OperationCanceledException if canceling the operation has been requested
216
	 * @see IProgressMonitor#isCanceled
216
	 * @see IProgressMonitor#isCanceled
217
	 */
217
	 */
218
	protected void checkCanceled() {
218
	protected void checkCanceled() {
219
		if (isCanceled()) {
219
		if (isCanceled()) {
220
			throw new OperationCanceledException("operation.cancelled"); //$NON-NLS-1$
220
			throw new OperationCanceledException("operation.canceled"); //$NON-NLS-1$
221
		}
221
		}
222
	}
222
	}
223
223

Return to bug 190664