Bug 471508 - Make the toolboxChanged() callback return useful information. r=gavin.

This commit is contained in:
Philip Chee 2009-01-30 23:05:44 +01:00
Родитель a56af8e625
Коммит b5c27b47a3
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -139,11 +139,11 @@ function notifyParentInitialized()
gToolbox.customizeInitialized(); gToolbox.customizeInitialized();
} }
function toolboxChanged() function toolboxChanged(aEvent)
{ {
gToolboxChanged = true; gToolboxChanged = true;
if ("customizeChange" in gToolbox) if ("customizeChange" in gToolbox)
gToolbox.customizeChange(); gToolbox.customizeChange(aEvent);
} }
function getToolbarAt(i) function getToolbarAt(i)
@ -634,7 +634,7 @@ function restoreDefaultSet()
// Now re-wrap the items on the toolbar. // Now re-wrap the items on the toolbar.
wrapToolbarItems(); wrapToolbarItems();
toolboxChanged(); toolboxChanged("reset");
} }
function updateIconSize(aUseSmallIcons, localDefault) function updateIconSize(aUseSmallIcons, localDefault)