Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] RE: bug # 44220

This is a patch to a critical bug I found, it a simple fix so I see no
reason to push to into 1.2

Comments?

Index: src/org/eclipse/cdt/make/ui/MakeContentProvider.java
===================================================================
RCS file:
/home/tools/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/MakeContentProvider.java,v
retrieving revision 1.4
diff -u -r1.4 MakeContentProvider.java
--- src/org/eclipse/cdt/make/ui/MakeContentProvider.java    7 Sep 2003
19:52:20 -0000    1.4
+++ src/org/eclipse/cdt/make/ui/MakeContentProvider.java    6 Oct 2003
13:34:49 -0000
@@ -225,7 +225,7 @@
            // Do a sync exec, not an async exec, since the resource delta
            // must be traversed in this method.  It is destroyed
            // when this method returns.
-            ctrl.getDisplay().syncExec(new Runnable() {
+            ctrl.getDisplay().asyncExec(new Runnable() {
                public void run() {
                    processDelta(delta);
                }





Back to the top