diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2014-06-07 10:10:18 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2014-06-07 10:10:18 +1000 |
commit | 549531fb4a1d985d67aef61b882bb759949dbc7c (patch) | |
tree | 620643c360cddbd3deaa36c50c156d5ed7458991 | |
parent | 33444b1983e9c1fb2eb153f8c80cd56d496bf439 (diff) | |
download | scintilla-mirror-549531fb4a1d985d67aef61b882bb759949dbc7c.tar.gz |
Failed to use the correct argument type in previous commit.
-rw-r--r-- | cocoa/ScintillaView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h index 24d6dc59a..98c536566 100644 --- a/cocoa/ScintillaView.h +++ b/cocoa/ScintillaView.h @@ -179,7 +179,7 @@ extern NSString *const SCIUpdateUINotification; - (NSString*) getLexerProperty: (NSString*) name; // The delegate property should be used instead of registerNotifyCallback which is deprecated. -- (void) registerNotifyCallback: (intptr_t) windowid value: (SciNotifyFunc) callback __attribute__((deprecated)); +- (void) registerNotifyCallback: (intptr_t) windowid value: (Scintilla::SciNotifyFunc) callback __attribute__((deprecated)); - (void) setInfoBar: (NSView <InfoBarCommunicator>*) aView top: (BOOL) top; - (void) setStatusText: (NSString*) text; |