From 3799e8d91eab37b2241573a7e9f48f261b83b4de Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Tue, 4 Apr 2006 16:55:31 +0000 Subject: [PATCH] Turn code completion back on. The PDOM isn't quite ready yet for content assist. --- .../internal/ui/text/contentassist/CCompletionProcessor2.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java index 38cdd7e0ee5..913c328216b 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/contentassist/CCompletionProcessor2.java @@ -82,7 +82,7 @@ public class CCompletionProcessor2 implements IContentAssistProcessor { IFile file = (IFile)workingCopy.getResource(); if (file != null) { - IPDOM pdom = CCorePlugin.getPDOMManager().getPDOM(workingCopy.getCProject()); + IPDOM pdom = null; //CCorePlugin.getPDOMManager().getPDOM(workingCopy.getCProject()); ICodeReaderFactory readerFactory; if (pdom != null) readerFactory = pdom.getCodeReaderFactory(workingCopy);