diff options
| author | Neil <nyamatongwe@gmail.com> | 2017-06-08 14:51:06 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2017-06-08 14:51:06 +1000 | 
| commit | 69870956666618aa5c8194abf6fb2967fa14d064 (patch) | |
| tree | 918076df19a01bab706645855f6bcea635bb52ff /cocoa/InfoBarCommunicator.h | |
| parent | 37508011503a9e6b451759197754bbd04869a230 (diff) | |
| download | scintilla-mirror-69870956666618aa5c8194abf6fb2967fa14d064.tar.gz | |
Indented consistently by using astyle.
Diffstat (limited to 'cocoa/InfoBarCommunicator.h')
| -rw-r--r-- | cocoa/InfoBarCommunicator.h | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/cocoa/InfoBarCommunicator.h b/cocoa/InfoBarCommunicator.h index 382f3bb8e..5a91dcb59 100644 --- a/cocoa/InfoBarCommunicator.h +++ b/cocoa/InfoBarCommunicator.h @@ -9,10 +9,10 @@   */  typedef NS_OPTIONS(NSUInteger, IBDisplay) { -  IBShowZoom          = 0x01, -  IBShowCaretPosition = 0x02, -  IBShowStatusText    = 0x04, -  IBShowAll           = 0xFF +	IBShowZoom          = 0x01, +	IBShowCaretPosition = 0x02, +	IBShowStatusText    = 0x04, +	IBShowAll           = 0xFF  };  /** @@ -22,14 +22,14 @@ typedef NS_OPTIONS(NSUInteger, IBDisplay) {   */  typedef NS_ENUM(NSInteger, NotificationType) { -  IBNZoomChanged,    // The user selected another zoom value. -  IBNCaretChanged,   // The caret in the editor changed. -  IBNStatusChanged,  // The application set a new status message. +	IBNZoomChanged,    // The user selected another zoom value. +	IBNCaretChanged,   // The caret in the editor changed. +	IBNStatusChanged,  // The application set a new status message.  };  @protocol InfoBarCommunicator -- (void) notify: (NotificationType) type message: (NSString*) message location: (NSPoint) location -          value: (float) value; +- (void) notify: (NotificationType) type message: (NSString *) message location: (NSPoint) location +	  value: (float) value;  - (void) setCallback: (id <InfoBarCommunicator>) callback;  @end  | 
