diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-12 06:15:25 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-12 06:15:25 -0400 |
commit | 85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556 (patch) | |
tree | 5e4dd15f4a7f3c049dfc85535604c6145452190f /application/palemoon/components/places/content/history-panel.js | |
parent | 038971c8a13407d18b2e11578c1df572598e909d (diff) | |
download | UXP-85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556.tar UXP-85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556.tar.gz UXP-85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556.tar.lz UXP-85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556.tar.xz UXP-85e1c970e9e0dfa8b01d2209bf9dc6b3e5510556.zip |
Revert "[PALEMOON] Use Components.interfaces directly in controller.js, history-panel.js, and treeView.js"
This reverts commit 8e9e05da3d770daab326621b0ce42eb15d1cb740.
Diffstat (limited to 'application/palemoon/components/places/content/history-panel.js')
-rw-r--r-- | application/palemoon/components/places/content/history-panel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/places/content/history-panel.js b/application/palemoon/components/places/content/history-panel.js index 5b5445487..cda39dd26 100644 --- a/application/palemoon/components/places/content/history-panel.js +++ b/application/palemoon/components/places/content/history-panel.js @@ -41,7 +41,7 @@ function searchHistory(aInput) var query = PlacesUtils.history.getNewQuery(); var options = PlacesUtils.history.getNewQueryOptions(); - const NHQO = Components.interfaces.nsINavHistoryQueryOptions; + const NHQO = Ci.nsINavHistoryQueryOptions; var sortingMode; var resultType; |