Fix typo from patch for bug 239429: clearURLFromStausBar -> clearURLFromStatusBar

This commit is contained in:
gavin@gavinsharp.com 2008-02-21 16:58:07 -08:00
parent 1e7d063a59
commit 9e5654684e
3 changed files with 7 additions and 7 deletions

View File

@ -50,7 +50,7 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="init();"
onunload="SidebarUtils.clearURLFromStausBar();">
onunload="SidebarUtils.clearURLFromStatusBar();">
<script type="application/x-javascript"
src="chrome://browser/content/bookmarks/sidebarUtils.js"/>
@ -75,7 +75,7 @@
onkeypress="if (event.keyCode == 13) this.controller.openSelectedNodeWithEvent(event);"
onclick="SidebarUtils.handleClick(this, event);"
onmousemove="SidebarUtils.handleTreeMouseMove(event);"
onmouseout="SidebarUtils.clearURLFromStausBar();">
onmouseout="SidebarUtils.clearURLFromStatusBar();">
<treecols>
<treecol id="title" flex="1" primary="true" hideheader="true"/>
</treecols>

View File

@ -58,7 +58,7 @@
<page id="history-panel" orient="vertical"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="HistorySidebarInit();"
onunload="SidebarUtils.clearURLFromStausBar();">
onunload="SidebarUtils.clearURLFromStatusBar();">
<script type="application/x-javascript"
src="chrome://browser/content/bookmarks/sidebarUtils.js"/>
@ -123,7 +123,7 @@
hidecolumnpicker="true"
onclick="SidebarUtils.handleClick(this, event, true);"
onmousemove="SidebarUtils.handleTreeMouseMove(event);"
onmouseout="SidebarUtils.clearURLFromStausBar();">
onmouseout="SidebarUtils.clearURLFromStatusBar();">
<treecols>
<treecol id="title" flex="1" primary="true" hideheader="true"/>
</treecols>

View File

@ -93,13 +93,13 @@ var SidebarUtils = {
if (PlacesUtils.nodeIsURI(cell))
window.top.XULBrowserWindow.setOverLink(cell.uri, null);
else
this.clearURLFromStausBar();
this.clearURLFromStatusBar();
}
else
this.clearURLFromStausBar();
this.clearURLFromStatusBar();
},
clearURLFromStausBar: function SU_clearURLFromStausBar() {
clearURLFromStatusBar: function SU_clearURLFromStatusBar() {
window.top.XULBrowserWindow.setOverLink("", null);
}
};