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:
parent
ebc8d3f9d6
commit
f00fd4cd95
2 changed files with 7 additions and 7 deletions
|
@ -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$
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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...
|
||||
|
|
Loading…
Add table
Reference in a new issue