summaryrefslogtreecommitdiff
path: root/firefox-1.5-bullet-bill.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2007-12-18 14:33:32 +0000
committerMartin Stransky <stransky@fedoraproject.org>2007-12-18 14:33:32 +0000
commitbede30df0baea7e8e1e2f6d108a73e051cd64fc3 (patch)
treea7a6155e74c936ee389ec0edd95c6ace2d6d9d00 /firefox-1.5-bullet-bill.patch
parent...and put back all of the prefs (diff)
downloadlibrewolf-fedora-ff-bede30df0baea7e8e1e2f6d108a73e051cd64fc3.tar.gz
librewolf-fedora-ff-bede30df0baea7e8e1e2f6d108a73e051cd64fc3.tar.bz2
librewolf-fedora-ff-bede30df0baea7e8e1e2f6d108a73e051cd64fc3.zip
- moved to XUL Runner and updated to 3.0b3pre
- removed firefox-devel package, gecko-libs is provided by xulrunner-devel now.
Diffstat (limited to 'firefox-1.5-bullet-bill.patch')
-rw-r--r--firefox-1.5-bullet-bill.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/firefox-1.5-bullet-bill.patch b/firefox-1.5-bullet-bill.patch
deleted file mode 100644
index 7108eb4..0000000
--- a/firefox-1.5-bullet-bill.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Index: mozilla/editor/libeditor/text/nsTextEditRules.cpp
-===================================================================
-RCS file: /cvsroot/mozilla/editor/libeditor/text/nsTextEditRules.cpp,v
-retrieving revision 1.195
-diff -d -u -p -r1.195 nsTextEditRules.cpp
---- mozilla/editor/libeditor/text/nsTextEditRules.cpp 16 Jun 2005 13:10:56 -0000 1.195
-+++ mozilla/editor/libeditor/text/nsTextEditRules.cpp 4 Oct 2006 16:02:19 -0000
-@@ -1390,13 +1390,13 @@ nsTextEditRules::EchoInsertionToPWBuff(P
- // manage the password buffer
- mPasswordText.Insert(*aOutString, aStart);
-
-- // change the output to '*' only
-+ // change the output to 'U+2022' only
- PRInt32 length = aOutString->Length();
- PRInt32 i;
- aOutString->Truncate();
- for (i=0; i<length; i++)
- {
-- aOutString->Append(PRUnichar('*'));
-+ aOutString->Append(PRUnichar(0x2022));
- }
-
- return NS_OK;
bgstack15