Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class ACC {
public static final int ROLE_TABLECELL = 0x1d;
public static final int ROLE_TABLECOLUMNHEADER = 0x19;
/** @deprecated use ROLE_TABLECOLUMNHEADER */
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int ROLE_TABLECOLUMN = ROLE_TABLECOLUMNHEADER;
public static final int ROLE_TABLEROWHEADER = 0x1a;
public static final int ROLE_TREE = 0x23;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class CTabFolder extends Composite {
*
* @deprecated This field is no longer used. See setMinimumCharacters(int)
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public int MIN_TAB_WIDTH = 4;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -978,14 +978,14 @@ public class SWT {
* @deprecated The same as PreExternalEventDispatch (value is 52).
* @since 3.103
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int Sleep = PreExternalEventDispatch;

/**
* @deprecated The same as PostExternalEventDispatch (value is 53).
* @since 3.103
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int Wakeup = PostExternalEventDispatch;

/**
Expand Down Expand Up @@ -2549,7 +2549,7 @@ public class SWT {
* XULRunner as a browser renderer is no longer supported. Use
* <code>SWT.WEBKIT</code> or <code>SWT.NONE</code> instead.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int MOZILLA = 1 << 15;

/**
Expand Down
Loading