From 5dd23d30288de29523d19aba2020a6ef3c57c68f Mon Sep 17 00:00:00 2001 From: Pawel Piech Date: Thu, 24 Jan 2008 04:17:17 +0000 Subject: [PATCH] [192019] Added the missing setFlags() override, without which many of the views didn't work after the refactoring. --- .../src/org/eclipse/dd/dsf/ui/viewmodel/VMDelta.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/VMDelta.java b/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/VMDelta.java index 800d163a303..ac52e8d9834 100644 --- a/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/VMDelta.java +++ b/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/VMDelta.java @@ -111,10 +111,16 @@ public class VMDelta extends ModelDelta { return fFlags; } - public void addFlags(int flags) { - fFlags |= flags; + /** + * Sets this delta's flags. + * + * @param flags + */ + @Override + public void setFlags(int flags) { + fFlags = flags; } - + public void setChildCount(int count) { fChildCount = count; }