This commit is contained in:
ducarroz%netscape.com 1999-08-19 19:54:38 +00:00
Родитель 05d4b58dd0
Коммит 10c7fbd7f5
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -66,7 +66,7 @@ char* nsGfxAutoTextControlFrame::eventName[] = {"onstartlookup", "onautocomplete
nsGfxAutoTextControlFrame::nsGfxAutoTextControlFrame() :
mLookupInterval(300),
mLookupTimer(nsnull),
mUseBlur(PR_FALSE)
mUseBlurr(PR_FALSE)
{
PRInt32 i;
for (i = 0; i < LAST_ID; i ++)
@ -114,12 +114,12 @@ nsresult nsGfxAutoTextControlFrame::HandleEvent(nsIPresContext& aPresContext,
case NS_VK_DELETE :
case NS_VK_BACK :
if (mUseBlur)
if (mUseBlurr)
PrimeTimer();
break;
default :
if (mUseBlur)
if (mUseBlurr)
{
nsString emptyStr("");
SetAutoCompleteString(emptyStr);
@ -184,7 +184,7 @@ void nsGfxAutoTextControlFrame::ReadAttributes(nsIContent* aContent)
if (NS_SUCCEEDED(aContent->GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::autocompletetype, val)))
{
if (! val.IsEmpty())
mUseBlur = (val == "blur");
mUseBlurr = (val == "blurr");
}
}

Просмотреть файл

@ -73,7 +73,7 @@ public:
nsresult ExecuteScriptEventHandler(PRInt32 handlerID);
protected:
PRBool mUseBlur;
PRBool mUseBlurr;
nsITimer* mLookupTimer;
PRInt32 mLookupInterval;
nsString mEvtHdlrProp[LAST_ID];