1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bugzilla 206561.

This commit is contained in:
Randy Rohrbach 2008-04-29 16:51:33 +00:00
parent 688c32b743
commit 589c9a1294

View file

@ -150,7 +150,11 @@ public class VMViewerUpdate implements IViewerUpdate {
public TreePath getElementPath() { return fElementPath; }
public IPresentationContext getPresentationContext() { return fPresentationContext; }
public IStatus getStatus() { return fRequestMonitor.getStatus(); }
public void setStatus(IStatus status) { fRequestMonitor.setStatus(status); }
public void setStatus(IStatus status) {
if ( isCanceled() ) {
fRequestMonitor.cancel();
}
fRequestMonitor.setStatus(status); }
public boolean isCanceled() {
if (fClientUpdate != null) {