summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLillian Angel <langel@redhat.com>2006-01-27 19:37:59 +0000
committerLillian Angel <langel@redhat.com>2006-01-27 19:37:59 +0000
commit220a20cfdecbd59c59258bb392b213508c68a748 (patch)
tree1e7cfe66bfdf4fc81951f1a9b02256df35d1f4c8
parent0dad3a00f48fa9092e8be66b398d5305129c8115 (diff)
downloadclasspath-220a20cfdecbd59c59258bb392b213508c68a748.tar.gz
2006-01-27 Lillian Angel <langel@redhat.com>
* javax/swing/text/DefaultStyledDocument.java (insert): Moved this loop to insertUpdate. (insertUpdate): Likewise. Fixed variable names. Incremented pos if new paragraph is inserted. (split): Changed edits to use replace instead. Prevents assertion errors. (insertFirstContentTag): Removed else. (insertContentTag): Implemented else for JoinNextDirection. (createFracture): Fixed up code, still not fully complete. (insertFracture): Fixed to use return value from recreateAfterFracture. (recreateAfterFracture): Changed to return an array of the elements to be added. This prevents an assertion error. (contains): New function checks if an element is already in the Vector. Vector's contain function was not enough to use. (addAddedElement): Changed to use new contains function. (addAddedElements): Likewise. (addRemovedElement): Likewise. (addRemovedElements): Likewise.
-rw-r--r--ChangeLog8
1 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a8c8cdb4a..5a38bd736 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -25,7 +25,13 @@
recreateAfterFracture.
(recreateAfterFracture): Changed to return an array of the
elements to be added. This prevents an assertion error.
-
+ (contains): New function checks if an element is already in
+ the Vector. Vector's contain function was not enough to use.
+ (addAddedElement): Changed to use new contains function.
+ (addAddedElements): Likewise.
+ (addRemovedElement): Likewise.
+ (addRemovedElements): Likewise.
+
2006-01-27 Audrius Meskauskas <AudriusA@Bioinformatics.org>
PR 25520