# HG changeset patch # User Philip Chee # Date 1410453037 -28800 # Fri Sep 12 00:30:37 2014 +0800 # Node ID b78efcee94db80db88d7c7ae6b780e655b99fe19 # Parent 99217fe26097a510f6fd5148a93d452bbb771226 Bug 1053166 - Fix typo in autocomplete.xml comment, s/openResultPopuup/openPopup/ r=InvisibleSmiley DONTBUILD NPOTDB diff --git a/suite/components/autocomplete/resources/content/autocomplete.xml b/suite/components/autocomplete/resources/content/autocomplete.xml --- a/suite/components/autocomplete/resources/content/autocomplete.xml +++ b/suite/components/autocomplete/resources/content/autocomplete.xml @@ -549,17 +549,17 @@ if (this.view.mTree) this.view.mTree.beginUpdateBatch(); this.clearResultElements(false); // clear results, but don't repaint yet } // always call openPopup...we may not have opened it // if a previous search session didn't return enough search results. // it's smart and doesn't try to open itself multiple times... - // be sure to add our result elements before calling openResultPopuup as we need + // be sure to add our result elements before calling openPopup as we need // to know the total # of results found so far. this.addResultElements(aSessionName, aResults); this.autoFillInput(aSessionName, aResults, false); if (this.mFirstReturn && this.view.mTree) this.view.mTree.endUpdateBatch(); this.openPopup(); this.mFirstReturn = false;