spelling fix. patch by jminta@gmail.com, r=me. bug 288368
git-svn-id: svn://10.0.0.236/trunk@172345 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
261d8ff4f5
commit
db7f8a1968
@ -99,7 +99,7 @@
|
||||
function updateCategoryList()
|
||||
{
|
||||
document.getElementById("categories").value = gCategoryList.join(",");
|
||||
var listbox = document.getElementById("catergorieslist")
|
||||
var listbox = document.getElementById("categorieslist")
|
||||
|
||||
listbox.clearSelection();
|
||||
while (listbox.firstChild)
|
||||
@ -126,7 +126,7 @@
|
||||
|
||||
function editCategory()
|
||||
{
|
||||
var list = document.getElementById("catergorieslist");
|
||||
var list = document.getElementById("categorieslist");
|
||||
if (list.selectedItem) {
|
||||
var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||||
.getService(Components.interfaces.nsIPromptService);
|
||||
@ -144,7 +144,7 @@
|
||||
|
||||
function deleteCategory()
|
||||
{
|
||||
var list = document.getElementById("catergorieslist");
|
||||
var list = document.getElementById("categorieslist");
|
||||
if (list.selectedItem) {
|
||||
gCategoryList.splice(list.selectedIndex, 1);
|
||||
updateCategoryList();
|
||||
@ -191,7 +191,7 @@
|
||||
<groupbox flex="1">
|
||||
<caption label="&pref.categories.label;"/>
|
||||
<hbox flex="1">
|
||||
<listbox flex="1" id="catergorieslist"/>
|
||||
<listbox flex="1" id="categorieslist"/>
|
||||
<vbox>
|
||||
<spacer flex="1"/>
|
||||
<button label="&add.label;" oncommand="addCategory()"/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user