Changeset 15224 in webkit for trunk/JavaScriptCore/API/JSNode.c
- Timestamp:
- Jul 7, 2006, 7:02:47 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSNode.c
r15168 r15224 110 110 static JSClassRef nodePrototypeClass; 111 111 if (!nodePrototypeClass) 112 nodePrototypeClass = JSClassCreate( context,NULL, JSNodePrototype_staticFunctions, &kJSObjectCallbacksNone, NULL);112 nodePrototypeClass = JSClassCreate(NULL, JSNodePrototype_staticFunctions, &kJSObjectCallbacksNone, NULL); 113 113 return nodePrototypeClass; 114 114 } … … 170 170 JSNode_callbacks.finalize = JSNode_finalize; 171 171 172 nodeClass = JSClassCreate( context,JSNode_staticValues, NULL, &JSNode_callbacks, NULL);172 nodeClass = JSClassCreate(JSNode_staticValues, NULL, &JSNode_callbacks, NULL); 173 173 } 174 174 return nodeClass;
Note:
See TracChangeset
for help on using the changeset viewer.