From 9f40f220f2f026f17cee113f4bb36634a8c0bb0c Mon Sep 17 00:00:00 2001 From: "gavin%gavinsharp.com" Date: Fri, 28 Mar 2008 21:03:51 +0000 Subject: [PATCH] Bug 425798: fix typo from patch in bug 404438, pending r+a=mconnor --- toolkit/content/widgets/autocomplete.xml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/toolkit/content/widgets/autocomplete.xml b/toolkit/content/widgets/autocomplete.xml index 64ba5a0638b..5e9a28df32c 100644 --- a/toolkit/content/widgets/autocomplete.xml +++ b/toolkit/content/widgets/autocomplete.xml @@ -697,10 +697,11 @@ this.setAttribute("width", width > 100 ? width : 100); // setConsumeRollupEvent() before we call openPopup() + var nsIPopupBO = Components.interfaces.nsIPopupBoxObject; this.popupBoxObject.setConsumeRollupEvent( this.mInput.consumeRollupEvent ? - Ci.nsIPopupBoxObject.ROLLUP_CONSUME : - Ci.nsIPopupBoxObject.ROLLUP_NO_CONSUME); + nsIPopupBO.ROLLUP_CONSUME : + nsIPopupBO.ROLLUP_NO_CONSUME); this.openPopup(aElement, "after_start", 0, 0, false, false); } ]]> @@ -945,10 +946,11 @@ this._invalidate(); // setConsumeRollupEvent() before we call openPopup() + var nsIPopupBO = Components.interfaces.nsIPopupBoxObject; this.popupBoxObject.setConsumeRollupEvent( this.mInput.consumeRollupEvent ? - Ci.nsIPopupBoxObject.ROLLUP_CONSUME : - Ci.nsIPopupBoxObject.ROLLUP_NO_CONSUME); + nsIPopupBO.ROLLUP_CONSUME : + nsIPopupBO.ROLLUP_NO_CONSUME); this.openPopup(aElement, "after_start", 0, 0, false, false); } ]]>