diff options
author | Brad Laue <brad@gentoo.org> | 2005-04-16 17:53:46 +0000 |
---|---|---|
committer | Brad Laue <brad@gentoo.org> | 2005-04-16 17:53:46 +0000 |
commit | eb0ce0eba818e10e8d9a39ba15074b972d24f2fd (patch) | |
tree | 2e24d41618f93536bc85ec7ae8db5bcd0991c67d /www-client | |
parent | Bump to 1.0.3 (diff) | |
download | gentoo-2-eb0ce0eba818e10e8d9a39ba15074b972d24f2fd.tar.gz gentoo-2-eb0ce0eba818e10e8d9a39ba15074b972d24f2fd.tar.bz2 gentoo-2-eb0ce0eba818e10e8d9a39ba15074b972d24f2fd.zip |
Remove unneeded patches
(Portage version: 2.0.51.19)
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch | 11 | ||||
-rw-r--r-- | www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch | 47 |
2 files changed, 0 insertions, 58 deletions
diff --git a/www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch b/www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch deleted file mode 100644 index 9de10a1fae8c..000000000000 --- a/www-client/mozilla-firefox/files/firefox-0.8-gcc-3.4.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- gfx/public/nsRegion.h.old 2003-03-25 02:57:42.000000000 +0000 -+++ gfx/public/nsRegion.h 2004-04-23 02:25:09.606368256 +0100 -@@ -234,7 +234,7 @@ - void MoveInto (nsRegion& aDestRegion) - { MoveInto (aDestRegion, mRectListHead.next); } - -- nsRegion (const nsRegion& aRegion); // Prevent copying of regions -+ public:nsRegion (const nsRegion& aRegion); // Prevent copying of regions - nsRegion& operator = (const nsRegion& aRegion); - }; - diff --git a/www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch b/www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch deleted file mode 100644 index afd4e1691689..000000000000 --- a/www-client/mozilla-firefox/files/firefox-0.9-nsFormHistory-crash-fix.patch +++ /dev/null @@ -1,47 +0,0 @@ -Index: toolkit/components/satchel/src/nsFormHistory.cpp -=================================================================== -RCS file: /cvsroot/mozilla/toolkit/components/satchel/src/nsFormHistory.cpp,v -retrieving revision 1.13 -diff -u -9 -p -w -r1.13 nsFormHistory.cpp ---- toolkit/components/satchel/src/nsFormHistory.cpp 17 Jun 2004 00:13:16 -0000 1.13 -+++ toolkit/components/satchel/src/nsFormHistory.cpp 24 Jun 2004 06:56:29 -0000 -@@ -734,35 +734,38 @@ nsFormHistory::AutoCompleteSearch(const - if (RowMatch(row, aInputName, aInputValue, &value)) { - matchingRows.AppendElement(row); - matchingValues.AppendElement(value); - } - } while (row); - - // Turn auto array into flat array for quick sort, now that we - // know how many items there are - PRUint32 count = matchingRows.Count(); -+ -+ if (count > 0) { - PRUint32* items = new PRUint32[count]; - PRUint32 i; - for (i = 0; i < count; ++i) - items[i] = i; - -- NS_QuickSort(items, count, sizeof(nsIMdbRow*), -+ NS_QuickSort(items, count, sizeof(PRUint32), - SortComparison, &matchingValues); - - for (i = 0; i < count; ++i) { - // Place the sorted result into the autocomplete result - result->AddRow((nsIMdbRow *)matchingRows[items[i]]); - - // Free up these strings we owned. - delete (PRUnichar *) matchingValues[i]; - } - - delete[] items; -+ } - - PRUint32 matchCount; - result->GetMatchCount(&matchCount); - if (matchCount > 0) { - result->SetSearchResult(nsIAutoCompleteResult::RESULT_SUCCESS); - result->SetDefaultIndex(0); - } else { - result->SetSearchResult(nsIAutoCompleteResult::RESULT_NOMATCH); - result->SetDefaultIndex(-1); |