Fix build bustage. GetFromTypeAndExtension is now getFromTypeAndExtension

This commit is contained in:
scott%scott-macgregor.org 2003-11-23 21:28:57 +00:00
Родитель 65a5672ec0
Коммит d535dc3dc9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -205,7 +205,7 @@ HelperApps.prototype = {
// talks to OS Specific hooks that on some platforms (MacOS X) are required to get a
// fully populated MIME Info object. Thus it is this object that we return.
mimeSvc = Components.classes["@mozilla.org/uriloader/external-helper-app-service;1"].getService(Components.interfaces.nsIMIMEService);
return mimeSvc.GetFromTypeAndExtension(types[0], null);
return mimeSvc.getFromTypeAndExtension(types[0], null);
}
return null;