X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=OSX%2FSaverListController.h;h=9b46133517ccecc823f3d17b437798d4fc6f4c21;hb=aa75c7476aeaa84cf3abc192b376a8b03c325213;hp=dd665201920dd003136e7a6f750bfef7200772a4;hpb=f8cf5ac7b2f53510f80a0eaf286a25298be17bfe;p=xscreensaver diff --git a/OSX/SaverListController.h b/OSX/SaverListController.h index dd665201..9b461335 100644 --- a/OSX/SaverListController.h +++ b/OSX/SaverListController.h @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright (c) 2012 Jamie Zawinski +/* xscreensaver, Copyright (c) 2012-2014 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -15,13 +15,13 @@ #import -@interface SaverListController : UITableViewController { +@interface SaverListController : UITableViewController { int active_section_count; NSMutableArray *list_by_letter[26]; // 27 to get "#" after "Z". NSMutableArray *letter_sections; NSMutableArray *section_titles; - NSString *selected; + NSArray *names; NSDictionary *descriptions; int tap_count; @@ -30,8 +30,6 @@ } - (id)initWithNames:(NSArray *)names descriptions:(NSDictionary *)descs; -- (void) reload:(NSArray *)names descriptions:(NSDictionary *)descs; -- (NSString *) selected; - (void) scrollTo:(NSString *)name; @end