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

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

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