Package: eclipse-wtp / 3.6.0-1

dont-use-org.eclipse.equinox.bidi.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
From: Jakub Adam <jakub.adam@ktknet.cz>
Date: Thu, 10 Jul 2014 17:02:06 +0200
Subject: dont-use-org.eclipse.equinox.bidi

---
 org.eclipse.wst.common.frameworks.ui/META-INF/MANIFEST.MF             | 3 +--
 .../eclipse/wst/common/frameworks/internal/ui/NewProjectGroup.java    | 4 ----
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/org.eclipse.wst.common.frameworks.ui/META-INF/MANIFEST.MF b/org.eclipse.wst.common.frameworks.ui/META-INF/MANIFEST.MF
index f644850..01dfa2e 100644
--- a/org.eclipse.wst.common.frameworks.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.wst.common.frameworks.ui/META-INF/MANIFEST.MF
@@ -18,7 +18,6 @@ Require-Bundle: org.eclipse.ui.ide;bundle-version="[3.4.0,4.0.0)",
  org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
  org.eclipse.wst.common.environment;bundle-version="[1.0.200,2.0.0)",
  org.eclipse.wst.common.core;bundle-version="[1.2.0,2.0.0)",
- org.eclipse.core.expressions;bundle-version="[3.4.100,4.0.0)",
- org.eclipse.equinox.bidi;bundle-version="[0.10.0,2.0.0)"
+ org.eclipse.core.expressions;bundle-version="[3.4.100,4.0.0)"
 Eclipse-LazyStart: true
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/NewProjectGroup.java b/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/NewProjectGroup.java
index 6674865..e2e8080 100644
--- a/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/NewProjectGroup.java
+++ b/org.eclipse.wst.common.frameworks.ui/wtp_ui/org/eclipse/wst/common/frameworks/internal/ui/NewProjectGroup.java
@@ -13,11 +13,9 @@ package org.eclipse.wst.common.frameworks.internal.ui;
 import java.io.File;
 
 import org.eclipse.core.runtime.Path;
-import org.eclipse.equinox.bidi.StructuredTextTypeHandlerFactory;
 import org.eclipse.jface.dialogs.IDialogConstants;
 import org.eclipse.jface.dialogs.Dialog;
 import org.eclipse.jface.layout.GridDataFactory;
-import org.eclipse.jface.util.BidiUtils;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.events.ModifyEvent;
 import org.eclipse.swt.events.ModifyListener;
@@ -91,7 +89,6 @@ public class NewProjectGroup implements IProjectCreationPropertiesNew{
 		data.widthHint = SIZING_TEXT_FIELD_WIDTH;
 		projectNameField.setLayoutData(data);
 		projectNameField.setFont(font);
-		BidiUtils.applyBidiProcessing(projectNameField, BidiUtils.BTD_DEFAULT);
 		synchHelper.synchText(projectNameField, PROJECT_NAME, new Control[]{projectLabel});
 	}
 
@@ -135,7 +132,6 @@ public class NewProjectGroup implements IProjectCreationPropertiesNew{
 		data.widthHint = SIZING_TEXT_FIELD_WIDTH;
 		locationPathField.setLayoutData(data);
 		locationPathField.setFont(font);
-		BidiUtils.applyBidiProcessing(locationPathField, StructuredTextTypeHandlerFactory.FILE);
 
 		// browse button
 		browseButton = new Button(projectGroup, SWT.PUSH);