diff options
author | Damiano Galassi <[email protected]> | 2015-10-25 07:03:36 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-10-25 07:03:36 +0100 |
commit | 646cb272a2c9feecc5a839360248621991c1f453 (patch) | |
tree | 438b4139252281ef544cb5502609206ac9be4f78 /macosx/HBTitleSelectionController.h | |
parent | 4fde4b8fdd7c40401f74b18f668de53d6a04c2dd (diff) |
MacGui: change the title selection sheet to use a view-based table view.
Diffstat (limited to 'macosx/HBTitleSelectionController.h')
-rw-r--r-- | macosx/HBTitleSelectionController.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/HBTitleSelectionController.h b/macosx/HBTitleSelectionController.h index 226340347..8aa7e33eb 100644 --- a/macosx/HBTitleSelectionController.h +++ b/macosx/HBTitleSelectionController.h @@ -8,6 +8,8 @@ NS_ASSUME_NONNULL_BEGIN +@class HBTitle; + @protocol HBTitleSelectionDelegate <NSObject> - (void)didSelectIndexes:(NSIndexSet *)indexes; @@ -16,7 +18,7 @@ NS_ASSUME_NONNULL_BEGIN @interface HBTitleSelectionController : NSWindowController -- (instancetype)initWithTitles:(NSArray *)titles delegate:(id<HBTitleSelectionDelegate>)delegate; +- (instancetype)initWithTitles:(NSArray<HBTitle *> *)titles delegate:(id<HBTitleSelectionDelegate>)delegate; @end |