From 9441739839f4ebfa52b40d1a1ad3cfac2fdee3d4 Mon Sep 17 00:00:00 2001 From: Francisco Ryan Tolmasky I Date: Fri, 5 Mar 2010 21:23:25 -0800 Subject: [PATCH] Fixed incorrect method call. Reviewed by me. --- Objective-J/CFURL.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objective-J/CFURL.js b/Objective-J/CFURL.js index b224793f5..a0f1be8b2 100644 --- a/Objective-J/CFURL.js +++ b/Objective-J/CFURL.js @@ -547,12 +547,12 @@ function CFURLGetResourcePropertiesForKeys(/*CFURL*/ aURL) CFURL.prototype.resourcePropertyForKey = function(/*String*/ aKey) { - return CFURLGetResourcePropertiesForKeys(this).objectForKey(aKey); + return CFURLGetResourcePropertiesForKeys(this).valueForKey(aKey); } CFURL.prototype.setResourcePropertyForKey = function(/*String*/ aKey, /*id*/ aValue) { - CFURLGetResourcePropertiesForKeys(this).setObjectForKey(aKey, aValue); + CFURLGetResourcePropertiesForKeys(this).setValueForKey(aKey, aValue); } CFURL.prototype.staticResourceData = function()