From 1e7c2c5df4fa0cd9868516da73532cd9cc653491 Mon Sep 17 00:00:00 2001 From: CaS Date: Tue, 25 Mar 2003 19:19:27 +0000 Subject: [PATCH] Fix typo and improve comments git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16263 72102866-910b-0410-8b05-ffd578937521 --- Source/NSURL.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/NSURL.m b/Source/NSURL.m index 72c5432b2..c6138d5fa 100644 --- a/Source/NSURL.m +++ b/Source/NSURL.m @@ -1120,6 +1120,10 @@ static void unescape(const char *from, char * to) * The specified client (if non-nil) will be set up to receive * notifications of the progress of the background load process. *

+ *

+ * The processes current run loop must be run in order for the + * background load operation to operate! + *

*/ - (void) loadResourceDataNotifyingClient: (id)client usingCache: (BOOL)shouldUseCache @@ -1561,7 +1565,7 @@ static void unescape(const char *from, char * to) if (c != nil) { - if ([c respondsToSelector: @selector(URLResourceDidFinishLoading:g:)]) + if ([c respondsToSelector: @selector(URLResourceDidFinishLoading:)]) { [c URLResourceDidFinishLoading: self]; }