Call the new methods from suitable places.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17206 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2003-07-12 18:04:25 +00:00
parent bfcaa8b453
commit 3e87f17811
2 changed files with 4 additions and 1 deletions

View file

@ -2,7 +2,7 @@
* Headers/gnustep/gui/NSTextView.h, Source/NSTextView.m: Add
-_updateInputMethodState and -_updateInputMethodWithInsertionPoint:
methods. Minor cleanups in comments.
methods. Call them in suitable places. Minor cleanups in comments.
2003-07-12 Gregory John Casamento <greg_casamento@yahoo.com>

View file

@ -322,6 +322,7 @@ this happens when layout has been invalidated, and when we are resized.
[self setNeedsDisplay: YES];
[self updateInsertionPointStateAndRestartTimer:
[self shouldDrawInsertionPoint]];
[self _updateInputMethodState];
}
-(void) _layoutManagerDidInvalidateLayout
@ -3036,6 +3037,8 @@ Figure out how the additional layout stuff is supposed to work.
}
}
#endif
[self _updateInputMethodWithInsertionPoint: _insertionPointRect.origin];
}