1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Update for the new parameters to ICDISession.createCSession

This commit is contained in:
Peter Graves 2003-01-21 18:58:16 +00:00
parent 6130425ae3
commit c36bf37cb1
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-01-21 Peter Graves
* src/org/eclipse/cdt/debug/testplugin/CDebugHelper.java: Updated to use new parameters to
ICDISession.createCSession
2002-12-17 Peter Graves
* plugin.xml,test.xml: Some simple cleanups to remove refrences to the jdt and

View file

@ -39,7 +39,7 @@ public class CDebugHelper {
exename+="sol/" + exe;
else
return(null);
session=mi.createCSession(null, exename);
session=mi.createCSession(null, null, null, exename);
return(session);
}