This commit is contained in:
dp%netscape.com 2000-05-05 05:54:15 +00:00
Родитель 462db59ab4
Коммит e70cfc3491
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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;