Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorteicher2006-06-20 09:51:26 +0000
committerteicher2006-06-20 09:51:26 +0000
commiteff3a7ba847a44fc415e5bc865fb77a239e0569a (patch)
treed2631fb75eae99ecf3b578521dae8358fb66301b /org.eclipse.ui.editors/buildnotes_text.html
parent1c6e69db3441465fb8ab9fa8b7ec264d1585dc74 (diff)
downloadeclipse.platform.text-eff3a7ba847a44fc415e5bc865fb77a239e0569a.tar.gz
eclipse.platform.text-eff3a7ba847a44fc415e5bc865fb77a239e0569a.tar.xz
eclipse.platform.text-eff3a7ba847a44fc415e5bc865fb77a239e0569a.zip
added build note entries about GapTextStore and AbstractInformationControlManagerv20060620-0800
Diffstat (limited to 'org.eclipse.ui.editors/buildnotes_text.html')
-rw-r--r--org.eclipse.ui.editors/buildnotes_text.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/org.eclipse.ui.editors/buildnotes_text.html b/org.eclipse.ui.editors/buildnotes_text.html
index 8c946ea0829..d8bde6a8cc1 100644
--- a/org.eclipse.ui.editors/buildnotes_text.html
+++ b/org.eclipse.ui.editors/buildnotes_text.html
@@ -19,12 +19,24 @@ To see which bugs have been addressed in one of the builds simply open the <a hr
========== Eclipse Build Input June 20th 2006 ==========<br>
<pre>
- bug fixing
+- AbstractInformationControlManager#computeInformationControlLocation will no longer use the
+ lowest priority anchor in the case that the proposed information control size does not fit
+ with any of the anchors. Instead, it uses AbstractInformationControlManager#computeAvailableArea
+ to see which anchor offers the largest intersection with the proposed control size. In addition,
+ the control size and location are adjusted such that the information control does not overlap
+ with the subject area (unless the anchor is ANCHOR_GLOBAL) and does not bleed over the monitor edges.
</pre>
<br>
<br>
========== Eclipse Build Input June 13th 2006 ==========<br>
<pre>
- bug fixing
+- rewrite of GapTextStore which improves random replace operations as less re-allocations
+ occur. This allows to deprecate SequentialRewriteTextStore as its performance is not better than
+ the new GapTextStore. Users of SequentialRewriteTextStore should simply use GapTextStore instead; consequently,
+ the default IDocument implementation (Document) no longer does text store switching
+ when a sequential rewrite session starts or ends. Also, the existing constructor of GapTextStore has
+ been deprecated.
</pre>
<br>
<br>

Back to the top