+@interface WBSThemesTableViewCell : UITableViewCell {
+}
+
+@end
+
+@implementation WBSThemesTableViewCell
+
+- (id) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuse {
+ if ((self = [super initWithFrame:frame reuseIdentifier:reuse]) != nil) {
+ } return self;
+}
+
+- (void) setTheme:(NSDictionary *)theme {
+ self.text = [theme objectForKey:@"Name"];
+ self.hidesAccessoryWhenEditing = NO;
+ NSNumber *active([theme objectForKey:@"Active"]);
+ BOOL inactive(active == nil || ![active boolValue]);
+ [self setImage:(inactive ? uncheckedImage : checkImage)];
+}
+
+@end
+