mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Merge 26f459dc7d
into b4d81a130e
This commit is contained in:
commit
91398f5019
1 changed files with 4 additions and 1 deletions
|
@ -111,6 +111,7 @@ import org.eclipse.ui.part.PluginTransfer;
|
|||
import org.eclipse.ui.part.ResourceTransfer;
|
||||
import org.eclipse.ui.part.ShowInContext;
|
||||
import org.eclipse.ui.part.ViewPart;
|
||||
import org.eclipse.ui.views.WorkbenchViewerSetup;
|
||||
import org.eclipse.ui.views.framelist.FrameList;
|
||||
|
||||
/**
|
||||
|
@ -528,7 +529,9 @@ public class CView extends ViewPart
|
|||
}
|
||||
|
||||
protected ProblemTreeViewer createViewer(Composite parent) {
|
||||
return new RemoteTreeViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
|
||||
RemoteTreeViewer remoteTreeViewer = new RemoteTreeViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
|
||||
WorkbenchViewerSetup.setupViewer(remoteTreeViewer);
|
||||
return remoteTreeViewer;
|
||||
}
|
||||
|
||||
protected IContentProvider createContentProvider() {
|
||||
|
|
Loading…
Add table
Reference in a new issue