diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-11 10:28:19 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-11 10:28:19 +0800 |
commit | 6f9f389089f857ddedbf669826f82174ba2137f2 (patch) | |
tree | 700c590c8ee4645aea3c2dbb2c6feba6a0c70602 /multimedia/totem/files | |
parent | 66146593fce2e1831bda006b75a9cdc3a1eaf410 (diff) | |
download | marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.tar marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.tar.gz marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.tar.bz2 marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.tar.lz marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.tar.xz marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.tar.zst marcuscom-ports-6f9f389089f857ddedbf669826f82174ba2137f2.zip |
Update to 1.1.4.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4470 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/totem/files')
-rw-r--r-- | multimedia/totem/files/patch-src_totem-volume.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/multimedia/totem/files/patch-src_totem-volume.c b/multimedia/totem/files/patch-src_totem-volume.c deleted file mode 100644 index 4b19f1891..000000000 --- a/multimedia/totem/files/patch-src_totem-volume.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/totem-volume.c.orig Thu Jul 14 00:10:58 2005 -+++ src/totem-volume.c Thu Jul 14 00:11:16 2005 -@@ -282,7 +282,7 @@ totem_volume_button_press (GtkWidget - button->timeout = TRUE; - - /* position (needs widget to be shown already) */ -- v = lrintf (totem_volume_button_get_value (button)); -+ v = (long) rintf (totem_volume_button_get_value (button)); - x += widget->allocation.x; - x += (widget->allocation.width - button->dock->allocation.width) / 2; - y += widget->allocation.y; -@@ -569,7 +569,7 @@ totem_volume_scale_value_changed (GtkRan - char *s; - - /* update label */ -- s = g_strdup_printf ("%d", lrintf (val)); -+ s = g_strdup_printf ("%d", (long) rintf (val)); - gtk_button_set_label (GTK_BUTTON (button), s); - g_free (s); - #else |