Commit 674fb436 authored by David Fuhrmann's avatar David Fuhrmann

macosx: extensions: delete dead code

parent d768b02e
...@@ -160,18 +160,6 @@ static void updateControlFromWidget(NSView *control, extension_widget_t *widget, ...@@ -160,18 +160,6 @@ static void updateControlFromWidget(NSView *control, extension_widget_t *widget,
[webView setNeedsDisplay:YES]; [webView setNeedsDisplay:YES];
break; break;
}
{
assert([control isKindOfClass:[NSTextView class]]);
NSTextView *textView = (NSTextView *)control;
NSString *string = [NSString stringWithUTF8String:widget->psz_text];
NSAttributedString *attrString = [[NSAttributedString alloc] initWithHTML:[string dataUsingEncoding: NSISOLatin1StringEncoding] documentAttributes:NULL];
[[textView textStorage] setAttributedString:attrString];
[textView setNeedsDisplay:YES];
[textView scrollRangeToVisible:NSMakeRange(0, 0)];
[attrString release];
break;
} }
case EXTENSION_WIDGET_LABEL: case EXTENSION_WIDGET_LABEL:
case EXTENSION_WIDGET_PASSWORD: case EXTENSION_WIDGET_PASSWORD:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment