mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Changes necessary to execute against M5 eclipse. Please search for // FIXME M5
This commit is contained in:
parent
b1a5e0fca5
commit
9d2cde2b8e
2 changed files with 16 additions and 3 deletions
|
@ -327,7 +327,12 @@ abstract public class AbstractVMLayoutNode implements IVMLayoutNode {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected class ViewerUpdate implements IViewerUpdate {
|
protected class ViewerUpdate implements IViewerUpdate {
|
||||||
final private Done fDone;
|
|
||||||
|
public void cancel() {
|
||||||
|
// FIXME M5
|
||||||
|
}
|
||||||
|
|
||||||
|
final private Done fDone;
|
||||||
private boolean fDoneInvoked = false;
|
private boolean fDoneInvoked = false;
|
||||||
final private TreePath fTreePath;
|
final private TreePath fTreePath;
|
||||||
private IStatus fStatus;
|
private IStatus fStatus;
|
||||||
|
|
|
@ -531,7 +531,12 @@ abstract public class AbstractVMProvider implements IVMProvider
|
||||||
}
|
}
|
||||||
|
|
||||||
class ViewerUpdate implements IViewerUpdate {
|
class ViewerUpdate implements IViewerUpdate {
|
||||||
private IStatus fStatus;
|
|
||||||
|
public void cancel() {
|
||||||
|
// FIXME M5
|
||||||
|
}
|
||||||
|
|
||||||
|
private IStatus fStatus;
|
||||||
private boolean fDoneInvoked = false;
|
private boolean fDoneInvoked = false;
|
||||||
final private Done fDone;
|
final private Done fDone;
|
||||||
final protected IViewerUpdate fClientUpdate;
|
final protected IViewerUpdate fClientUpdate;
|
||||||
|
@ -550,7 +555,10 @@ abstract public class AbstractVMProvider implements IVMProvider
|
||||||
public void beginTask(String name, int totalWork) {}
|
public void beginTask(String name, int totalWork) {}
|
||||||
public void internalWorked(double work) {}
|
public void internalWorked(double work) {}
|
||||||
public boolean isCanceled() { return fClientUpdate.isCanceled(); }
|
public boolean isCanceled() { return fClientUpdate.isCanceled(); }
|
||||||
public void setCanceled(boolean value) { fClientUpdate.setCanceled(value); }
|
public void setCanceled(boolean value) {
|
||||||
|
// FIXME M5
|
||||||
|
// fClientUpdate.setCanceled(value);
|
||||||
|
}
|
||||||
public void setTaskName(String name) {}
|
public void setTaskName(String name) {}
|
||||||
public void subTask(String name) {}
|
public void subTask(String name) {}
|
||||||
public void worked(int work) {}
|
public void worked(int work) {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue