зеркало из https://github.com/mozilla/gecko-dev.git
Removed unneccessary casts.
This commit is contained in:
Родитель
462db59ab4
Коммит
e70cfc3491
|
@ -71,7 +71,7 @@ nsresult Register(const char *path)
|
|||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
rv = spec->InitWithPath((char *)path);
|
||||
rv = spec->InitWithPath(path);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
rv = nsComponentManager::AutoRegisterComponent(nsIComponentManager::NS_Startup, spec);
|
||||
return rv;
|
||||
|
@ -91,7 +91,7 @@ nsresult Unregister(const char *path)
|
|||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
rv = spec->InitWithPath((char *)path);
|
||||
rv = spec->InitWithPath(path);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
rv = nsComponentManager::AutoUnregisterComponent(nsIComponentManager::NS_Startup, spec);
|
||||
return rv;
|
||||
|
|
Загрузка…
Ссылка в новой задаче