Bustage fix for bug 408115 on windows and mac.

This commit is contained in:
dtownsend@oxymoronical.com 2008-03-08 05:48:18 -08:00
Родитель 76430f295a
Коммит b2a78534fe
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1128,13 +1128,13 @@ function Startup()
for (var i = 0; i < gNewAddons.length; i++) {
var item = gExtensionManager.getItemForID(gNewAddons[i]);
switch (item.type) {
case Ci.nsIUpdateItem.TYPE_EXTENSION:
case Components.interfaces.nsIUpdateItem.TYPE_EXTENSION:
extensionCount++;
break;
case Ci.nsIUpdateItem.TYPE_THEME:
case Components.interfaces.nsIUpdateItem.TYPE_THEME:
themeCount++;
break;
case Ci.nsIUpdateItem.TYPE_LOCALE:
case Components.interfaces.nsIUpdateItem.TYPE_LOCALE:
localeCount++;
break;
}