1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00
This commit is contained in:
Mikhail Khodjaiants 2002-09-20 18:38:10 +00:00
parent 523331e401
commit d5f5423b78
2 changed files with 3 additions and 3 deletions

View file

@ -65,7 +65,7 @@ public interface ICSourceLocator extends ISourceLocator
* @param function the function name for which to locate source * @param function the function name for which to locate source
* @return an object representing a source element. * @return an object representing a source element.
*/ */
Object getSourceElementForFunection( String function ); Object getSourceElementForFunction( String function );
/** /**
* Returns a source element that corresponds to the given address, or * Returns a source element that corresponds to the given address, or

View file

@ -233,9 +233,9 @@ public class CSourceLocator implements ICSourceLocator
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see org.eclipse.cdt.debug.core.ICSourceLocator#getSourceElementForFunection(String) * @see org.eclipse.cdt.debug.core.ICSourceLocator#getSourceElementForFunction(String)
*/ */
public Object getSourceElementForFunection( String function ) public Object getSourceElementForFunction( String function )
{ {
return null; return null;
} }