Rename FillPropertyDescriptor to fill_property_descriptor.

This commit is contained in:
Ms2ger 2015-01-29 17:23:46 +01:00
parent 2592045ed4
commit bcd9ca6081
3 changed files with 9 additions and 8 deletions

View file

@ -7,7 +7,7 @@ use dom::bindings::conversions::{ToJSValConvertible};
use dom::bindings::js::{JS, JSRef, Temporary, Root};
use dom::bindings::js::{OptionalRootable, OptionalRootedRootable, ResultRootable};
use dom::bindings::js::{OptionalRootedReference, OptionalOptionalRootedRootable};
use dom::bindings::proxyhandler::{get_property_descriptor, FillPropertyDescriptor};
use dom::bindings::proxyhandler::{get_property_descriptor, fill_property_descriptor};
use dom::bindings::utils::{Reflectable, WindowProxyHandler};
use dom::bindings::utils::{GetArrayIndexFromId};
use dom::document::{Document, DocumentHelpers};
@ -116,7 +116,7 @@ unsafe extern fn getOwnPropertyDescriptor(cx: *mut JSContext, proxy: *mut JSObje
if let Some(window) = window {
let window = window.root();
(*desc).value = window.to_jsval(cx);
FillPropertyDescriptor(&mut *desc, proxy, true);
fill_property_descriptor(&mut *desc, proxy, true);
return true;
}