Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-10-24 23:10:27 +0000
committerLars Vogel2014-10-24 23:16:09 +0000
commitd08fbe075a0189c33cfca7a3c01a636e2cba07bf (patch)
tree778385ac883554a9d501653b63f75455ee7d53f0
parentd0ae1e4fdbf4fac736c899a367a3f635f49befc1 (diff)
downloadeclipse.platform.common-d08fbe075a0189c33cfca7a3c01a636e2cba07bf.tar.gz
eclipse.platform.common-d08fbe075a0189c33cfca7a3c01a636e2cba07bf.tar.xz
eclipse.platform.common-d08fbe075a0189c33cfca7a3c01a636e2cba07bf.zip
contains the Locale directly instead of a String Change-Id: I0fab6f84817a16a14c4b6636b890dfff561e392c Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.platform.doc.isv/porting/4.5/incompatibilities.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/bundles/org.eclipse.platform.doc.isv/porting/4.5/incompatibilities.html b/bundles/org.eclipse.platform.doc.isv/porting/4.5/incompatibilities.html
index 626ffddfc..d5cbecc60 100644
--- a/bundles/org.eclipse.platform.doc.isv/porting/4.5/incompatibilities.html
+++ b/bundles/org.eclipse.platform.doc.isv/porting/4.5/incompatibilities.html
@@ -13,9 +13,9 @@
<h1>Incompatibilities between Eclipse 4.4 and 4.5</h1>
<p>
- Eclipse changed in incompatible ways between 4.4 and 4.5 in ways that affect
- plug-ins. The following entries describe the areas that changed and provide
- instructions for migrating 4.4 plug-ins to 4.5. Note that you only need to look
+ Eclipse changed in incompatible ways between 4.4 and 4.5 in ways that affect
+ plug-ins. The following entries describe the areas that changed and provide
+ instructions for migrating 4.4 plug-ins to 4.5. Note that you only need to look
here if you are experiencing problems running your 4.4 plug-in on 4.5.
</p>
<p>
@@ -23,7 +23,7 @@ See also the list of <a href="../removals.html">deprecated API removals</a> for
</p>
<ol>
- <li><a href="#locale">Eclipse context key Translation.LOCALE provides the Local type</a></li>
+ <li><a href="#locale">Eclipse context key Translation.LOCALE provides the Locale type</a></li>
<li><a href="#xinternal">Package org.eclipse.e4.ui.workbench.addons.splitteraddon marked as non-API</a></li>
</ol>
@@ -31,17 +31,17 @@ See also the list of <a href="../removals.html">deprecated API removals</a> for
<!-- ############################################## -->
-<h2>1. <a name="locale">Eclipse context key Translation.LOCALE provides the Local type</a></h2>
-<p><strong>What is affected:</strong> Clients that are getting the Local injected.
+<h2>1. <a name="locale">Eclipse context key Translation.LOCALE provides the Locale type</a></h2>
+<p><strong>What is affected:</strong> Clients that are getting the Locale injected.
</p>
<p><strong>Description:</strong>
-The <code>Translation.LOCALE</code> key allows clients to get the current Local injected. The
-type has changed from String to Local.
+The <code>Translation.LOCALE</code> key allows clients to get the current Locale injected. The
+type has changed from String to Locale.
<p><strong>Action required:</strong> Clients that directly use API listed above should remove any references to it.
</p>
<!-- ############################################## -->
-<h2>1. <a name="xinternal">Package org.eclipse.e4.ui.workbench.addons.splitteraddon marked as non-API</a></h2>
+<h2>2. <a name="xinternal">Package org.eclipse.e4.ui.workbench.addons.splitteraddon marked as non-API</a></h2>
<p><strong>What is affected:</strong> Clients accessing the package.
</p>
<p><strong>Description:</strong>

Back to the top