Fix error in last mod.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14759 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-10-13 10:13:38 +00:00
parent f2da05104e
commit 39011c43ca

View file

@ -1579,8 +1579,8 @@ static NSNotificationCenter *nc;
example, we need to use bold for further
insertions - this is why we take the attributes
from range.location - 1. */
dict = [_textStorage attributesAtIndex: (charRange.location - 1)
effectiveRange: NULL];
dict = [_textStorage attributesAtIndex:
(charRange.location - 1) effectiveRange: NULL];
}
else
{
@ -1598,7 +1598,7 @@ static NSNotificationCenter *nc;
{
NSRange overlap;
if (flag == NO)
if (stillSelectingFlag == NO)
{
// FIXME
// Make the selected range visible
@ -3701,7 +3701,7 @@ afterString in order over charRange. */
- (BOOL) rulerView: (NSRulerView*)ruler
shouldRemoveMarker: (NSRulerMarker*)marker
{
return [(id)[aMarker representedObject] isKindOfClass: [NSTextTab class]];
return [(id)[marker representedObject] isKindOfClass: [NSTextTab class]];
}
/**