diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EventContext.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-06-03 Jean-François Rameau <jframeau@cvs.gnome.org> + + * embed/mozilla/EventContext.cpp: + + Typo. + 2005-06-03 Christian Persch <chpe@cvs.gnome.org> Don't open search toolbar on / or ' over formfields: diff --git a/embed/mozilla/EventContext.cpp b/embed/mozilla/EventContext.cpp index f4b998129..76da99c8c 100644 --- a/embed/mozilla/EventContext.cpp +++ b/embed/mozilla/EventContext.cpp @@ -1047,7 +1047,7 @@ EventContext::CheckKeyPress (nsIDOMKeyEvent *aEvent) NS_UTF16ToCString (uTag, NS_CSTRING_ENCODING_UTF8, tag); if (g_ascii_strcasecmp (tag.get(), "input") == 0 || - g_ascii_strcasecmp (tag.get(), "textaread") == 0 || + g_ascii_strcasecmp (tag.get(), "textarea") == 0 || g_ascii_strcasecmp (tag.get(), "select") == 0 || g_ascii_strcasecmp (tag.get(), "button") == 0 || g_ascii_strcasecmp (tag.get(), "isindex") == 0) return retval; |