зеркало из https://github.com/mozilla/pjs.git
changed name of NS_CreateContext to NS_CreateScriptContext
This commit is contained in:
Родитель
3ab1d5f6c1
Коммит
4876025852
|
@ -3161,7 +3161,7 @@ nsWebShell::CreateScriptEnvironment()
|
|||
}
|
||||
|
||||
if (nsnull == mScriptContext) {
|
||||
res = NS_CreateContext(mScriptGlobal, &mScriptContext);
|
||||
res = NS_CreateScriptContext(mScriptGlobal, &mScriptContext);
|
||||
}
|
||||
|
||||
return res;
|
||||
|
|
|
@ -155,7 +155,7 @@ public:
|
|||
* Return a new Context
|
||||
*
|
||||
*/
|
||||
extern "C" NS_DOM nsresult NS_CreateContext(nsIScriptGlobalObject *aGlobal, nsIScriptContext **aContext);
|
||||
extern "C" NS_DOM nsresult NS_CreateScriptContext(nsIScriptGlobalObject *aGlobal, nsIScriptContext **aContext);
|
||||
|
||||
#endif // nsIScriptContext_h__
|
||||
|
||||
|
|
|
@ -467,7 +467,8 @@ nsIScriptContext* nsJSEnvironment::GetNewContext()
|
|||
return context;
|
||||
}
|
||||
|
||||
extern "C" NS_DOM nsresult NS_CreateContext(nsIScriptGlobalObject *aGlobal, nsIScriptContext **aContext)
|
||||
extern "C" NS_DOM nsresult NS_CreateScriptContext(nsIScriptGlobalObject *aGlobal,
|
||||
nsIScriptContext **aContext)
|
||||
{
|
||||
nsresult rv = NS_OK;
|
||||
nsJSEnvironment *environment = nsJSEnvironment::GetScriptingEnvironment();
|
||||
|
|
|
@ -3161,7 +3161,7 @@ nsWebShell::CreateScriptEnvironment()
|
|||
}
|
||||
|
||||
if (nsnull == mScriptContext) {
|
||||
res = NS_CreateContext(mScriptGlobal, &mScriptContext);
|
||||
res = NS_CreateScriptContext(mScriptGlobal, &mScriptContext);
|
||||
}
|
||||
|
||||
return res;
|
||||
|
|
Загрузка…
Ссылка в новой задаче