diff options
author | nyamatongwe <unknown> | 2013-03-15 20:02:55 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-03-15 20:02:55 +1100 |
commit | d0566ab8b9c42c13d116af090a0e2cb21e4c9575 (patch) | |
tree | 857c29a31ee1bc49265b97da14b4213fb1357334 | |
parent | b020d57a6223d6cecdad4718eddbf5b8f9d6e5d8 (diff) | |
download | scintilla-mirror-d0566ab8b9c42c13d116af090a0e2cb21e4c9575.tar.gz |
Removed owner property as it is not used.
-rw-r--r-- | cocoa/ScintillaView.h | 4 | ||||
-rw-r--r-- | cocoa/ScintillaView.mm | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h index b933c8741..f34ac7e08 100644 --- a/cocoa/ScintillaView.h +++ b/cocoa/ScintillaView.h @@ -60,9 +60,6 @@ extern NSString *SCIUpdateUINotification; // It uses the content view for display. Scintilla::ScintillaCocoa* mBackend; - // The object (eg NSDocument) that controls the ScintillaView. - NSObject* mOwner; - // This is the actual content to which the backend renders itself. InnerView* mContent; @@ -80,7 +77,6 @@ extern NSString *SCIUpdateUINotification; } @property (nonatomic, readonly) Scintilla::ScintillaCocoa* backend; -@property (nonatomic, assign) NSObject* owner; @property (nonatomic, assign) id<ScintillaNotificationProtocol> delegate; - (void) dealloc; diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index 3cefc1649..a2ae060d7 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -631,7 +631,6 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor) @implementation ScintillaView @synthesize backend = mBackend; -@synthesize owner = mOwner; @synthesize delegate = mDelegate; /** |