aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2015-08-05 15:24:59 +0800
committerkwm <kwm@FreeBSD.org>2015-08-05 15:24:59 +0800
commitae9f208e739df0fc897ad6db40d995213382c473 (patch)
treed4c540dce6a6f472275461ed436a9347090e28e1 /multimedia
parentd1ff23f8fc09d69e07d43da61ac4ebe72fa352b1 (diff)
downloadfreebsd-ports-gnome-ae9f208e739df0fc897ad6db40d995213382c473.tar.gz
freebsd-ports-gnome-ae9f208e739df0fc897ad6db40d995213382c473.tar.zst
freebsd-ports-gnome-ae9f208e739df0fc897ad6db40d995213382c473.zip
Fix a typo in gtk+ 3 function name. This fixes the build with GTK+ 3.16.
PR: 201980 Obtained from: upstream
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/lives/files/patch-src_widget-helper.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/lives/files/patch-src_widget-helper.c b/multimedia/lives/files/patch-src_widget-helper.c
new file mode 100644
index 000000000000..5ef8ca8419a8
--- /dev/null
+++ b/multimedia/lives/files/patch-src_widget-helper.c
@@ -0,0 +1,11 @@
+--- src/widget-helper.c.orig 2015-08-05 09:16:34.803154000 +0200
++++ src/widget-helper.c 2015-08-05 09:16:59.890589000 +0200
+@@ -2404,7 +2404,7 @@
+ LIVES_INLINE boolean lives_label_set_halignment(LiVESLabel *label, float yalign) {
+ #ifdef GUI_GTK
+ #if GTK_CHECK_VERSION(3,16,0)
+- gtk_label_set_y_align(label,yalign);
++ gtk_label_set_yalign(label,yalign);
+ #else
+ gtk_misc_set_alignment(GTK_MISC(label),0.,yalign);
+ #endif