summaryrefslogtreecommitdiffstats
path: root/extensions/source/macosx/spotlight/OOoContentDataParser.m
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/macosx/spotlight/OOoContentDataParser.m')
-rw-r--r--extensions/source/macosx/spotlight/OOoContentDataParser.m7
1 files changed, 1 insertions, 6 deletions
diff --git a/extensions/source/macosx/spotlight/OOoContentDataParser.m b/extensions/source/macosx/spotlight/OOoContentDataParser.m
index d3ecf16ffaab..e1f51e5b90c7 100644
--- a/extensions/source/macosx/spotlight/OOoContentDataParser.m
+++ b/extensions/source/macosx/spotlight/OOoContentDataParser.m
@@ -47,12 +47,7 @@
NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data];
- // Once again...
- // class 'OOoContentDataParser' does not implement the 'NSXMLParserDelegate' protocol
- // So instead of this:
- // [parser setDelegate:self];
- // do this:
- ((id (*)(id, SEL, ...))objc_msgSend)(parser, @selector(setDelegate:), self);
+ [parser setDelegate:self];
[parser setShouldResolveExternalEntities:NO];
[parser parse];