Skip to content

Commit

Permalink
Fixing broken autocomplition in IDE.
Browse files Browse the repository at this point in the history
As described in https://bugzilla.mozilla.org/show_bug.cgi?id=1005083 the
nsIAutocompleteResult implementation is missing a method to work as intended.

Fixes issue 7645

Signed-off-by: Alexei Barantsev <barancev@gmail.com>
  • Loading branch information
mkresin authored and barancev committed Aug 18, 2014
1 parent 9c99b3a commit 5fafdac
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ AutoCompleteResult.prototype = {
},
getLabelAt: function getLabelAt(index) {
return this.getValueAt(index);
},
},
getFinalCompleteValueAt: function(index) {
return this.getValueAt(index);
},
removeValueAt: function(rowIndex, removeFromDb) {
},
QueryInterface: function (uuid) {
Expand Down

0 comments on commit 5fafdac

Please sign in to comment.