Bug 173299 change getControlleryById to getControllerById in nsIControllersInterface

r=cmanske sr=kin
This commit is contained in:
timeless%mac.com 2002-10-08 18:25:57 +00:00
Родитель 321eee78c5
Коммит e29aaed3b0
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -62,7 +62,7 @@ interface nsIControllers : nsISupports
/* /*
Get the controller specified by the given ID. Get the controller specified by the given ID.
*/ */
nsIController getControlleryById(in unsigned long controllerID); nsIController getControllerById(in unsigned long controllerID);
unsigned long getControllerCount(); unsigned long getControllerCount();
}; };

Просмотреть файл

@ -260,9 +260,9 @@ nsXULControllers::GetControllerId(nsIController *controller, PRUint32 *_retval)
return NS_ERROR_FAILURE; // none found return NS_ERROR_FAILURE; // none found
} }
/* nsIController getControlleryById (in unsigned long controllerID); */ /* nsIController getControllerById (in unsigned long controllerID); */
NS_IMETHODIMP NS_IMETHODIMP
nsXULControllers::GetControlleryById(PRUint32 controllerID, nsIController **_retval) nsXULControllers::GetControllerById(PRUint32 controllerID, nsIController **_retval)
{ {
NS_ENSURE_ARG_POINTER(_retval); NS_ENSURE_ARG_POINTER(_retval);