diff --git a/core/org.eclipse.cdt.core/ChangeLog b/core/org.eclipse.cdt.core/ChangeLog index 3d35904fffc..09b6712a04b 100644 --- a/core/org.eclipse.cdt.core/ChangeLog +++ b/core/org.eclipse.cdt.core/ChangeLog @@ -1,3 +1,8 @@ +2004-11-10 Alain Magloire + Typo in method IBinaryParser.ISymbol + * src/org/eclipse/cdt/core/IBinaryParser.java + * utils/org/eclipse/cdt/utils/Symbol.java + 2004-11-10 Alain Magloire Fix for PR 78308, on deleting of non-C resources, no deltas was fired. diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java index ce5d82d5767..e09c177b678 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java @@ -220,7 +220,7 @@ public interface IBinaryParser extends IAdaptable { * Return the binary object this symbol is from. * @return */ - IBinaryObject getBinarObject(); + IBinaryObject getBinaryObject(); } /** diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/Symbol.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/Symbol.java index c10b6710405..ae4d8738452 100644 --- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/Symbol.java +++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/Symbol.java @@ -52,7 +52,7 @@ public class Symbol implements ISymbol, Comparable { /* (non-Javadoc) * @see org.eclipse.cdt.core.IBinaryParser.ISymbol#getBinarObject() */ - public IBinaryObject getBinarObject() { + public IBinaryObject getBinaryObject() { return binary; }