diff options
author | mycroft <mycroft@pkgsrc.org> | 2001-02-07 23:48:17 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2001-02-07 23:48:17 +0000 |
commit | 8af550b782a0d85fbb7811b952350c97cbc2f24d (patch) | |
tree | 1bad75805435b1faa8b7e812da008e12a33ab190 /www/mozilla/patches | |
parent | 4783f08e104f65dc09f498e91187cd892ac4868c (diff) | |
download | pkgsrc-8af550b782a0d85fbb7811b952350c97cbc2f24d.tar.gz |
Bring in the fix for bug #63846, which prevents many buttons from working on at
least macppc (due to an uninitialized variable!).
Diffstat (limited to 'www/mozilla/patches')
-rw-r--r-- | www/mozilla/patches/patch-63846 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/mozilla/patches/patch-63846 b/www/mozilla/patches/patch-63846 new file mode 100644 index 00000000000..f5c0012a821 --- /dev/null +++ b/www/mozilla/patches/patch-63846 @@ -0,0 +1,13 @@ +$NetBSD: patch-63846,v 1.1 2001/02/07 23:48:17 mycroft Exp $ + +--- layout/html/forms/src/nsImageControlFrame.cpp.orig Wed Feb 7 23:45:45 2001 ++++ layout/html/forms/src/nsImageControlFrame.cpp Wed Feb 7 23:45:05 2001 +@@ -447,7 +447,7 @@ + nsIContent *formContent = nsnull; + mFormFrame->GetContent(&formContent); + +- nsEventStatus status; ++ nsEventStatus status = nsEventStatus_eIgnore; + nsEvent event; + event.eventStructType = NS_EVENT; + event.message = NS_FORM_SUBMIT; |