169308: Make nsIEditorLogging scriptable: fix a typo. r=brade sr=kin

This commit is contained in:
akkana%netscape.com 2002-09-25 23:53:17 +00:00
Родитель 5ecdaa69b3
Коммит 7156bf2f2c
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -364,7 +364,7 @@ function EditorStartLog()
fs = null;
}
catch(ex) { dump("Can't start logging!:\n" + ex + "\n");
catch(ex) { dump("Can't start logging!:\n" + ex + "\n"); }
}
function EditorStopLog()
@ -374,7 +374,7 @@ function EditorStopLog()
edlog.stopLogging();
window._content.focus();
}
catch(ex) { dump("Can't stop logging!:\n" + ex + "\n");
catch(ex) { dump("Can't stop logging!:\n" + ex + "\n"); }
}
function EditorRunLog()