diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2012-08-14 09:26:27 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2012-08-14 09:26:27 +1000 |
commit | 02c6cf9e3edbf71308d7e9eab67100fac80cf777 (patch) | |
tree | 51e8f419c5552b76692bbfc02aed4c04b1193c58 | |
parent | 6812414a55571b3157ac0857fc25e1a6d4b8402a (diff) | |
download | scintilla-mirror-02c6cf9e3edbf71308d7e9eab67100fac80cf777.tar.gz |
Break reference cycle between ScintillaView and its InnerView.
-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 638001efd..dcdea93a9 100644 --- a/cocoa/ScintillaView.h +++ b/cocoa/ScintillaView.h @@ -43,7 +43,7 @@ extern NSString *SCIUpdateUINotification; - (BOOL) canUndo; - (BOOL) canRedo; -@property (retain) ScintillaView* owner; +@property (assign) ScintillaView* owner; @end @interface ScintillaView : NSView <InfoBarCommunicator> |