* Headers/AppKit/NSTextView.h: Make NSTextViewDelegate a formal

protocol.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2013-03-08 10:45:35 +00:00
parent d344f23e19
commit c2d01aeca2
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2013-03-08 Fred Kiefer <FredKiefer@gmx.de>
* Headers/AppKit/NSTextView.h: Make NSTextViewDelegate a formal protocol.
2013-03-08 Fred Kiefer <FredKiefer@gmx.de>
* configure.ac: Correct change for libpng.

View file

@ -654,7 +654,13 @@ for that text view has been invalidated.
layout manager. */
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
@protocol NSTextViewDelegate <NSObject>
#ifdef __OBJC2__
@optional
#else
@end
@interface NSObject (NSTextViewDelegate)
#endif
-(void) textView: (NSTextView *)textView
clickedOnCell: (id <NSTextAttachmentCell>)cell