Skip to content

Commit 28aa56a

Browse files
committed
Stop using deprecated FilteredTree constructors
1 parent e0aed2a commit 28aa56a

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/FormFilteredTree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2006, 2015 IBM Corporation and others.
2+
* Copyright (c) 2006, 2026 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -35,7 +35,7 @@ public class FormFilteredTree extends FilteredTree {
3535
private FormEntry fEntryFilter;
3636

3737
public FormFilteredTree(Composite parent, int treeStyle, PatternFilter filter) {
38-
super(parent, treeStyle, filter, true);
38+
super(parent, treeStyle, filter, true, true);
3939
}
4040

4141
@Override

ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/shared/FilteredCheckboxTree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2010, 2018 IBM Corporation and others.
2+
* Copyright (c) 2010, 2026 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -68,7 +68,7 @@ public FilteredCheckboxTree(Composite parent, FormToolkit toolkit, int treeStyle
6868
* @param filter pattern filter to use in the filter control
6969
*/
7070
public FilteredCheckboxTree(Composite parent, FormToolkit toolkit, int treeStyle, PatternFilter filter) {
71-
super(parent, true);
71+
super(parent, true, true);
7272
fToolkit = toolkit;
7373
init(treeStyle, filter);
7474
}

ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/util/PluginWorkingSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2005, 2016 IBM Corporation and others.
2+
* Copyright (c) 2005, 2026 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -113,7 +113,7 @@ public void dispose() {
113113
class CheckboxFilteredTree extends FilteredTree {
114114

115115
public CheckboxFilteredTree(Composite parent, int treeStyle, PatternFilter filter) {
116-
super(parent, treeStyle, filter, true);
116+
super(parent, treeStyle, filter, true, true);
117117
}
118118

119119
@Override

ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/views/features/viewer/RootElementsFilteredTree.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2019 Ed Scadding.
2+
* Copyright (c) 2019, 2026 Ed Scadding and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -26,7 +26,7 @@
2626
public class RootElementsFilteredTree extends FilteredTree {
2727

2828
public RootElementsFilteredTree(Composite parent, int treeStyle) {
29-
super(parent, treeStyle, new RootElementsPatternFilter(), true);
29+
super(parent, treeStyle, new RootElementsPatternFilter(), true, true);
3030
}
3131

3232
/**

0 commit comments

Comments
 (0)