| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 4 * | 3 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 | 8 |
| 10 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 11 //A text field cell that has vertically centered text | 10 //A text field cell that has vertically centered text |
| 12 @interface SkTextFieldCell : NSTextFieldCell { | 11 @interface SkTextFieldCell : NSTextFieldCell { |
| 13 BOOL selectingOrEditing; | 12 BOOL selectingOrEditing; |
| 14 } | 13 } |
| 15 @end | 14 @end |
| OLD | NEW |