summaryrefslogtreecommitdiffstats
path: root/multimedia/totem/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-07-14 12:17:28 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-07-14 12:17:28 +0800
commit06be8f2a3bb11d4f68702d7cd371593e5f9fecb6 (patch)
tree653f37f21aa11fc88d5e1212927d820a7c28c55c /multimedia/totem/files
parentcac13cf26af7bac203b813c74c20fa72d003afda (diff)
downloadmarcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.tar
marcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.tar.gz
marcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.tar.bz2
marcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.tar.lz
marcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.tar.xz
marcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.tar.zst
marcuscom-ports-06be8f2a3bb11d4f68702d7cd371593e5f9fecb6.zip
Update to 1.1.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4238 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/totem/files')
-rw-r--r--multimedia/totem/files/patch-src_totem-volume.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/multimedia/totem/files/patch-src_totem-volume.c b/multimedia/totem/files/patch-src_totem-volume.c
new file mode 100644
index 000000000..4b19f1891
--- /dev/null
+++ b/multimedia/totem/files/patch-src_totem-volume.c
@@ -0,0 +1,20 @@
+--- 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