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 | 79378ae1dea69ef73961e477fd522e26f25be519 (patch) | |
tree | f9a4510ab06933913b42dfd000acc349af249566 | |
parent | 600f0700bb8cf9229ba3ff032fa271c216ffb0a8 (diff) | |
download | scintilla-mirror-79378ae1dea69ef73961e477fd522e26f25be519.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; |