mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Pass along the progress monitor.
This commit is contained in:
parent
48c3771211
commit
7d7f5e51f0
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ import java.io.IOException;
|
|||
import java.io.InputStream;
|
||||
|
||||
import org.eclipse.cdt.core.IBinaryParser;
|
||||
import org.eclipse.cdt.core.ISymbolReader;
|
||||
import org.eclipse.cdt.core.IBinaryParser.IBinaryFile;
|
||||
import org.eclipse.cdt.core.ISymbolReader;
|
||||
import org.eclipse.cdt.debug.core.executables.Executable;
|
||||
import org.eclipse.cdt.debug.core.executables.ISourceFilesProvider;
|
||||
import org.eclipse.cdt.internal.core.model.BinaryParserConfig;
|
||||
|
@ -118,7 +118,7 @@ public class StandardSourceFilesProvider extends PlatformObject implements ISour
|
|||
if (bin != null) {
|
||||
ISymbolReader symbolreader = (ISymbolReader) bin.getAdapter(ISymbolReader.class);
|
||||
if (symbolreader != null) {
|
||||
return symbolreader.getSourceFiles();
|
||||
return symbolreader.getSourceFiles(monitor);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue