Fixed mixed case in naming. Added enums for table column identification

This commit is contained in:
Michael Starke
2017-11-29 13:50:15 +01:00
parent 6d8c2b34be
commit eaea14ad9d
3 changed files with 36 additions and 21 deletions

View File

@@ -11,7 +11,7 @@
@class MPDocument;
@class KPKEntry;
@interface MPPickFieldTableModelRowItem : NSObject
@interface MPPickfieldTableModelRowItem : NSObject
@property (copy) NSString *name;
@property (copy) NSString *value;
@@ -24,10 +24,10 @@
@interface MPPickfieldTableModel : NSObject
@property (copy) NSArray<MPPickFieldTableModelRowItem *> *items;
@property (copy) NSArray<MPPickfieldTableModelRowItem *> *items;
- (instancetype)initWithEntry:(KPKEntry *)entry inDocument:(MPDocument *)document;
- (MPPickFieldTableModelRowItem *)itemAtIndex:(NSUInteger)index;
- (MPPickfieldTableModelRowItem *)itemAtIndex:(NSUInteger)index;
@end