mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 13:20:38 +00:00
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:
parent
f2da05104e
commit
39011c43ca
1 changed files with 4 additions and 4 deletions
|
@ -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]];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue