Skip to content

Commit

Permalink
Let Shell extend Composite to keep this hierarchy in the API. Fixes #1.
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasRentzCAU committed May 9, 2023
1 parent b40a3de commit 4b89952
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion org.eclipse.swt/src/org/eclipse/swt/widgets/Shell.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.widgets;
public class Shell {
public class Shell extends Composite {

public Shell(Composite parent, int style) {
super(parent, style);
}
}

0 comments on commit 4b89952

Please sign in to comment.