summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitleSelectionController.h
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2015-10-25 07:03:36 +0100
committerDamiano Galassi <[email protected]>2015-10-25 07:03:36 +0100
commit646cb272a2c9feecc5a839360248621991c1f453 (patch)
tree438b4139252281ef544cb5502609206ac9be4f78 /macosx/HBTitleSelectionController.h
parent4fde4b8fdd7c40401f74b18f668de53d6a04c2dd (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.h4
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