1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Fix for 190664: Change "(anon)" to "(anonymous)" in outline view

Patch by Sergey Prigogin (Google)
This commit is contained in:
Anton Leherbauer 2007-06-04 10:20:52 +00:00
parent ebc8d3f9d6
commit f00fd4cd95
2 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2006 QNX Software Systems and others.
* Copyright (c) 2000, 2007 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -212,12 +212,12 @@ public abstract class CModelOperation implements IWorkspaceRunnable, IProgressMo
* 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$
}
}

View file

@ -18,7 +18,7 @@ operation.needPath = Operation requires a path.
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.6=Referenced project is not a C/C++ project
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...