mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 19:10:48 +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
|
example, we need to use bold for further
|
||||||
insertions - this is why we take the attributes
|
insertions - this is why we take the attributes
|
||||||
from range.location - 1. */
|
from range.location - 1. */
|
||||||
dict = [_textStorage attributesAtIndex: (charRange.location - 1)
|
dict = [_textStorage attributesAtIndex:
|
||||||
effectiveRange: NULL];
|
(charRange.location - 1) effectiveRange: NULL];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -1598,7 +1598,7 @@ static NSNotificationCenter *nc;
|
||||||
{
|
{
|
||||||
NSRange overlap;
|
NSRange overlap;
|
||||||
|
|
||||||
if (flag == NO)
|
if (stillSelectingFlag == NO)
|
||||||
{
|
{
|
||||||
// FIXME
|
// FIXME
|
||||||
// Make the selected range visible
|
// Make the selected range visible
|
||||||
|
@ -3701,7 +3701,7 @@ afterString in order over charRange. */
|
||||||
- (BOOL) rulerView: (NSRulerView*)ruler
|
- (BOOL) rulerView: (NSRulerView*)ruler
|
||||||
shouldRemoveMarker: (NSRulerMarker*)marker
|
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