1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

fixed spelling

This commit is contained in:
David Inglis 2005-01-28 20:41:01 +00:00
parent 1321b32353
commit 7477803763
2 changed files with 2 additions and 2 deletions

View file

@ -541,7 +541,7 @@ public class CDescriptor implements ICDescriptor {
for (int i = 0; i < element.length; i++) {
if (element[i].getName().equalsIgnoreCase(CEXTENSION_NAME)) {
cExtension = (InternalCExtension)element[i].createExecutableExtension("run"); //$NON-NLS-1$
cExtension.setExtenionReference(ext);
cExtension.setExtensionReference(ext);
cExtension.setProject(fProject);
break;
}

View file

@ -23,7 +23,7 @@ public abstract class InternalCExtension extends PlatformObject {
fProject = project;
}
void setExtenionReference(ICExtensionReference extReference) {
void setExtensionReference(ICExtensionReference extReference) {
extensionRef = extReference;
}