1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-04 06:03:18 +02:00

Pass along the progress monitor.

This commit is contained in:
Ken Ryall 2010-04-26 16:58:39 +00:00
parent 48c3771211
commit 7d7f5e51f0

View file

@ -16,8 +16,8 @@ import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import org.eclipse.cdt.core.IBinaryParser; import org.eclipse.cdt.core.IBinaryParser;
import org.eclipse.cdt.core.ISymbolReader;
import org.eclipse.cdt.core.IBinaryParser.IBinaryFile; 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.Executable;
import org.eclipse.cdt.debug.core.executables.ISourceFilesProvider; import org.eclipse.cdt.debug.core.executables.ISourceFilesProvider;
import org.eclipse.cdt.internal.core.model.BinaryParserConfig; import org.eclipse.cdt.internal.core.model.BinaryParserConfig;
@ -118,7 +118,7 @@ public class StandardSourceFilesProvider extends PlatformObject implements ISour
if (bin != null) { if (bin != null) {
ISymbolReader symbolreader = (ISymbolReader) bin.getAdapter(ISymbolReader.class); ISymbolReader symbolreader = (ISymbolReader) bin.getAdapter(ISymbolReader.class);
if (symbolreader != null) { if (symbolreader != null) {
return symbolreader.getSourceFiles(); return symbolreader.getSourceFiles(monitor);
} }
} }