mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix typo from patch for bug 239429: clearURLFromStausBar -> clearURLFromStatusBar
This commit is contained in:
parent
1e7d063a59
commit
9e5654684e
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user