diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2012-03-13 09:55:50 +1100 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2012-03-13 09:55:50 +1100 |
commit | 595fc48ad6bc132e7b804d8e69afc4ab9e3dd59c (patch) | |
tree | e1b829d0596481a18e284b8896b37b6d2e8d5c4c /cocoa/ScintillaView.h | |
parent | 9070ea289fa078a869d80b6ab1ae7c03af160cd8 (diff) | |
download | scintilla-mirror-595fc48ad6bc132e7b804d8e69afc4ab9e3dd59c.tar.gz |
Change name of the 'layout' method of ScintillaView and InfoBar to 'positionSubViews'
as 'layout' has been added to their superclass NSView in OS X 10.7. The existing
'layout' method interfered with the new automatic layout feature.
Diffstat (limited to 'cocoa/ScintillaView.h')
-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 4dac0ad06..bcbd1eea0 100644 --- a/cocoa/ScintillaView.h +++ b/cocoa/ScintillaView.h @@ -69,7 +69,7 @@ extern NSString *SCIUpdateUINotification; } - (void) dealloc; -- (void) layout; +- (void) positionSubViews; - (void) sendNotification: (NSString*) notificationName; - (void) notify: (NotificationType) type message: (NSString*) message location: (NSPoint) location |