Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions org.eclipse.wb.doc.user/html-src/whatsnew/v125.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ endif::[]

= What's New - v1.25.0

== SWT

- Deprecation of `IPageLayout.editorReuseThreshold`. The corresponding method has been deprecated in 2023 and removed
with the 2026-09 release. Support for this property will be fully removed after the 2028-09 release.

== General

- [Linux] Wayland Support for SWT Designer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ public IDescriptionVersionsProvider getProvider(IJavaProject javaProject, ClassL
"4.7",
"4.8",
"4.9",
"4.10");
"4.10",
"4.11");
return new FromListDescriptionVersionsProvider(allVersions, version) {
@Override
protected boolean validate(Class<?> componentClass) throws Exception {
Expand Down Expand Up @@ -116,6 +117,9 @@ private static int getMinorVersion(int version) {
// between 4.965 and 4.972 then we can't distinguish between them (as both have
// version 4.9). Instead we have to manually bump the minor version whenever
// there is a "breaking" change.
return 10;
if (version < 4973) {
return 10;
}
return 11;
}
}
2 changes: 1 addition & 1 deletion org.eclipse.wb.rcp/wbp-meta/.wbp-cache-presentations
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eae7febf256316fb292d9b162e51d17d
c696a118dadb424fbe3b5b287eb42106
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
</methods>
<!-- PROPERTIES -->
<standard-bean-properties/>
<properties-advanced names="editorReuseThreshold"/>
<property id="setEditorAreaVisible(boolean)">
<defaultValue value="true"/>
</property>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,6 @@ public void test_properties() throws Exception {
assertNotNull(property);
assertTrue((Boolean) property.getValue());
}
{
Property property = page.getPropertyByTitle("editorReuseThreshold");
assertNotNull(property);
}
{
Property property = page.getPropertyByTitle("fixed");
assertNotNull(property);
Expand Down
Loading