diff options
author | gcramer <remarcg@gmx.net> | 2017-02-26 16:59:20 (GMT) |
---|---|---|
committer | gcramer <remarcg@gmx.net> | 2017-02-26 16:59:20 (GMT) |
commit | 35bf8cdc33fc89fb1e28a4110b4e43943aaf66af (patch) | |
tree | b0cb2718b37a114aa80cf23a5f340b68c57b7011 /generic/tkTextPriv.h | |
parent | 0b8cbd9b07fd2c36c526e302d2d4f9f852ea25d9 (diff) | |
download | tk-35bf8cdc33fc89fb1e28a4110b4e43943aaf66af.zip tk-35bf8cdc33fc89fb1e28a4110b4e43943aaf66af.tar.gz tk-35bf8cdc33fc89fb1e28a4110b4e43943aaf66af.tar.bz2 |
(1) Some memory problems fixed, with the help of a fine granulated valgrind test
(2) 'char* reliefString' changed to 'Tcl_Obj *reliefPtr', required for fine granulated valgrind test
(3) Severe bug in embedded window handling fixed
(4) Minor display problem with selected text fixed (function MakeStyle)
Diffstat (limited to 'generic/tkTextPriv.h')
-rw-r--r-- | generic/tkTextPriv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkTextPriv.h b/generic/tkTextPriv.h index 042ad52..015ba1b 100644 --- a/generic/tkTextPriv.h +++ b/generic/tkTextPriv.h @@ -638,7 +638,7 @@ TkBTreeGetTags( const TkTextIndex *indexPtr)/* Indicates a particular position in the B-tree. */ { const TkTextSegment *segPtr = TkTextIndexGetContentSegment(indexPtr, NULL); - return TkBTreeGetSegmentTags(TkTextIndexGetShared(indexPtr), segPtr, indexPtr->textPtr); + return TkBTreeGetSegmentTags(TkTextIndexGetShared(indexPtr), segPtr, indexPtr->textPtr, NULL); } /* |