summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitleSelectionController.h
diff options
context:
space:
mode:
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