View | Details | Raw Unified | Return to bug 254458 | Differences between
and this patch

Collapse All | Expand All

(-).classpath (-6 / +5 lines)
Lines 1-11 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	<classpathentry kind="src" path="src"/>
3
	<classpathentry kind="src" path="src"/>
5
	<classpathentry kind="lib" path="S:/epoc32/wins/c/ppro-apps/junit.jar"/>
4
	<classpathentry exported="true" kind="src" path="/org.eclipse.ercp.swt.core.tests"/>
6
	<classpathentry kind="lib" path="S:/epoc32/wins/c/system/JAVAEXT/eswt-core.jar"/>
5
	<classpathentry exported="true" kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/>
7
	<classpathentry kind="lib" path="S:/epoc32/wins/c/system/JAVAEXT/eswt-expanded.jar"/>
6
	<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
8
	<classpathentry kind="lib" path="S:/epoc32/wins/c/system/JAVAEXT/eswt-mobile.jar"/>
7
	<classpathentry combineaccessrules="false" exported="true" kind="src" path="/org.eclipse.ercp.swt.mobile.win"/>
9
	<classpathentry kind="src" path="/org.eclipse.ercp.swt.core.tests"/>
8
	<classpathentry combineaccessrules="false" exported="true" kind="src" path="/org.eclipse.ercp.swt.core.win"/>
10
	<classpathentry kind="output" path="bin"/>
9
	<classpathentry kind="output" path="bin"/>
11
</classpath>
10
</classpath>
(-)src/org/eclipse/ercp/swt/mobile/tests/junit/Test_org_eclipse_ercp_swt_mobile_Screen.java (-2 / +3 lines)
Lines 388-395 Link Here
388
388
389
		for (int i = 0; i < screens.length; i++) {
389
		for (int i = 0; i < screens.length; i++) {
390
			Screen screen = screens[i];
390
			Screen screen = screens[i];
391
			int[] orientationValues = {Screen.PORTRAIT, Screen.LANDSCAPE};
391
			//I adjust the order of orientationValues. Since most devices are default portrait mode, thus I made Screen.PORTRAIT as second one
392
			String[] orientationValuesName = {"PORTRAIT", "LANDSCAPE"};
392
			int[] orientationValues = {Screen.LANDSCAPE, Screen.PORTRAIT};
393
			String[] orientationValuesName = {"LANDSCAPE", "PORTRAIT"};
393
394
394
			for (int j = 0; j < orientationValues.length; j++) {
395
			for (int j = 0; j < orientationValues.length; j++) {
395
				try {
396
				try {

Return to bug 254458