Make OakPasteboardEntry’s historyId public

This commit is contained in:
Allan Odgaard
2020-04-13 11:14:39 +07:00
parent babb989288
commit e0db2f5ec1
2 changed files with 1 additions and 4 deletions

View File

@@ -14,6 +14,7 @@ PUBLIC @interface OakPasteboardEntry : NSObject
@property (nonatomic, readonly) NSString* string;
@property (nonatomic, readonly) NSArray<NSString*>* strings;
@property (nonatomic, readonly) NSDictionary* options;
@property (nonatomic, readonly) NSUInteger historyId; // This is only to be used by OakPasteboardChooser
@property (nonatomic, readonly) BOOL fullWordMatch;
@property (nonatomic, readonly) BOOL ignoreWhitespace;

View File

@@ -154,10 +154,6 @@ static NSArray* RunSQLStatement (sqlite3* db, char const* query, std::map<std::s
// = OakPasteboardEntry =
// ======================
@interface OakPasteboardEntry ()
@property (nonatomic, readonly) NSUInteger historyId;
@end
@implementation OakPasteboardEntry
- (id)initWithStrings:(NSArray<NSString*>*)strings options:(NSDictionary*)options
{