diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-09 08:09:28 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-09 08:09:28 -0400 |
commit | 8e9e05da3d770daab326621b0ce42eb15d1cb740 (patch) | |
tree | 4c8b7ceb92366690527d05a74fe9e697d51b31ea /application/palemoon/components/places/content/history-panel.js | |
parent | 2569bca9308968c778f750c3db23c08d95aa7230 (diff) | |
download | UXP-8e9e05da3d770daab326621b0ce42eb15d1cb740.tar UXP-8e9e05da3d770daab326621b0ce42eb15d1cb740.tar.gz UXP-8e9e05da3d770daab326621b0ce42eb15d1cb740.tar.lz UXP-8e9e05da3d770daab326621b0ce42eb15d1cb740.tar.xz UXP-8e9e05da3d770daab326621b0ce42eb15d1cb740.zip |
[PALEMOON] Use Components.interfaces directly in controller.js, history-panel.js, and treeView.js
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 cda39dd26..5b5445487 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 = Ci.nsINavHistoryQueryOptions; + const NHQO = Components.interfaces.nsINavHistoryQueryOptions; var sortingMode; var resultType; |