mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-14 22:51:28 +00:00
Fixed incorrect method call.
Reviewed by me.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user