mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 10:01:14 +00:00
* 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:
parent
d344f23e19
commit
c2d01aeca2
2 changed files with 10 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue