Bug 240947 use content instead of _content

r=neil sr=dveditz
This commit is contained in:
timeless%mozdev.org 2007-08-22 04:54:13 +00:00
Родитель e268174c77
Коммит 05c6fe2bd0
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -359,7 +359,7 @@ function EditorStartLog()
var edlog = GetCurrentEditor().QueryInterface(Components.interfaces.nsIEditorLogging);
var fs = EditorGetScriptFileSpec();
edlog.startLogging(fs);
window._content.focus();
window.content.focus();
fs = null;
}
@ -371,7 +371,7 @@ function EditorStopLog()
try {
var edlog = GetCurrentEditor().QueryInterface(Components.interfaces.nsIEditorLogging);
edlog.stopLogging();
window._content.focus();
window.content.focus();
}
catch(ex) { dump("Can't stop logging!:\n" + ex + "\n"); }
}
@ -381,7 +381,7 @@ function EditorRunLog()
var fs;
fs = EditorGetScriptFileSpec();
EditorExecuteScript(fs);
window._content.focus();
window.content.focus();
}
// --------------------------- TransactionManager ---------------------------