Skip to content

Commit 6c52bfd

Browse files
authored
Merge branch 'eclipse-platform:master' into program_imagedata
2 parents 45f91bc + 4cd3c19 commit 6c52bfd

File tree

77 files changed

+4687
-1299
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+4687
-1299
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: daily

.github/workflows/junit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
done
3030
3131
- name: Publish Unit Test Results
32-
uses: EnricoMi/publish-unit-test-result-action@v1
32+
uses: EnricoMi/publish-unit-test-result-action@v2
3333
id: test-results
3434
with:
3535
commit: ${{ github.event.workflow_run.head_sha }}

bundles/org.eclipse.swt/.classpath_gtk_win32

Lines changed: 0 additions & 36 deletions
This file was deleted.

bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ public static Frame getFrame (Composite parent) {
145145
* @since 3.0
146146
*/
147147
public static Frame new_Frame (final Composite parent) {
148-
if (OS.IsWin32) SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
149148
if (parent == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
150149
if ((parent.getStyle () & SWT.EMBEDDED) == 0) {
151150
SWT.error (SWT.ERROR_INVALID_ARGUMENT);
@@ -268,7 +267,6 @@ public static Frame new_Frame (final Composite parent) {
268267
* @since 3.0
269268
*/
270269
public static Shell new_Shell (final Display display, final Canvas parent) {
271-
if (OS.IsWin32) SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
272270
if (display == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
273271
if (parent == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
274272
long handle = 0;

bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java

Lines changed: 113 additions & 0 deletions
Large diffs are not rendered by default.

bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,9 @@
1313
*******************************************************************************/
1414
package org.eclipse.swt.browser;
1515

16-
import org.eclipse.swt.internal.gtk.*;
17-
1816
class BrowserFactory {
1917

2018
WebBrowser createWebBrowser (int style) {
21-
if (OS.IsWin32) return null;
2219
boolean webkitInstalled = WebKit.IsInstalled ();
2320
if (!webkitInstalled) return null;
2421

0 commit comments

Comments
 (0)