Declare -layoutManager:didCompleteLayoutForTextContainer:atEnd: so it's visible (to gcc and to delegate implementers).

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16042 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2003-02-22 01:41:53 +00:00
parent cc9e0d4346
commit 4c4131fca7
2 changed files with 19 additions and 0 deletions

View file

@ -1,3 +1,14 @@
2003-02-22 02:34 Alexander Malmberg <alexander@malmberg.org>
* Headers/gnustep/gui/GSLayoutManager.h: Declare
-layoutManager:didCompleteLayoutForTextContainer:atEnd: so it's
visible (to gcc and to delegate implementers).
* Source/GSHorizontalTypesetter.m, Source/NSLayoutManager.m: Make
sure the extra line frag is always set when we reach the end (ie.
even after soft-invalidated layout information has been used up to
the end).
2003-02-21 Serg Stoyan <stoyan@hologr.com>
* Source/NSApplication.m (-activateIgnoringOtherApps:): Remove

View file

@ -333,5 +333,13 @@ layout information.
@end
@interface NSObject (GSLayoutManagerDelegate)
-(void) layoutManager: (GSLayoutManager *)layoutManager
didCompleteLayoutForTextContainer: (NSTextContainer *)textContainer
atEnd: (BOOL)atEnd;
@end
#endif