Community
Participate
Working Groups
Build Identifier: SWT doesnt work on WinCE because of commit 1.298 in org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java /* Make the process DPI aware for Windows Vista */ if (OS.WIN32_VERSION >= OS.VERSION (6, 0)) OS.SetProcessDPIAware (); should be replaced by /* Make the process DPI aware for Windows Vista */ if (!OS.IsWinCE && OS.WIN32_VERSION >= OS.VERSION (6, 0)) OS.SetProcessDPIAware (); Reproducible: Always Steps to Reproduce: 1. start an SWT App on WinCE 6.0
I see, the code has being wrong for a long time, we never saw the problem because we don't have wince 6.0. It is too late to fix this problem for 3.6. We will have it fixed first thing for 3.6.1. Sorry
Created attachment 175413 [details] patch
Fixed in HEAD > 20100728 Silenio, 3.6.1 ?
Sure.
Fixed in 3.6.maintenance > 20100729