summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-07-21 07:27:20 +0000
committerPacho Ramos <pacho@gentoo.org>2013-07-21 07:27:20 +0000
commitc10045f28a77c375f3643bbc2738c1316bd635c6 (patch)
treeb432260c571ef0cb61fca191a07047d7c3dceaf5 /gnome-extra/gtkhtml/files
parentRemove masked for removal package (diff)
downloadhistorical-c10045f28a77c375f3643bbc2738c1316bd635c6.tar.gz
historical-c10045f28a77c375f3643bbc2738c1316bd635c6.tar.bz2
historical-c10045f28a77c375f3643bbc2738c1316bd635c6.zip
Remove masked for removal package
Package-Manager: portage-2.1.12.13/cvs/Linux x86_64 Manifest-Sign-Key: 0xA188FBD4
Diffstat (limited to 'gnome-extra/gtkhtml/files')
-rw-r--r--gnome-extra/gtkhtml/files/libgtkhtml-2.2.0-alpha.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/gnome-extra/gtkhtml/files/libgtkhtml-2.2.0-alpha.patch b/gnome-extra/gtkhtml/files/libgtkhtml-2.2.0-alpha.patch
deleted file mode 100644
index 488c1b116f75..000000000000
--- a/gnome-extra/gtkhtml/files/libgtkhtml-2.2.0-alpha.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- libgtkhtml-2.2.0/libgtkhtml/layout/htmlboxtable.c.old 2003-01-06 11:06:15.000000000 -0500
-+++ libgtkhtml-2.2.0/libgtkhtml/layout/htmlboxtable.c 2003-02-24 18:17:59.000000000 -0500
-@@ -503,7 +503,7 @@
- for (i=0; i< table->cols; i++) {
- if (table->col_info[i].style_width.type == type) {
- /* Make the space added proportional against the max width of the column */
-- gint to_add = (gint)((float) table->col_info[i].max / (float) max_width * (float)tmp);
-+ gint to_add = max_width ? (gint)((float) table->col_info[i].max / (float) max_width * (float)tmp) : 0; // don't div by zero on alpha
- if (to_add == 0)
- to_add = 1;
-