1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00

Fix a typo in gtk+ 3 function name. This fixes the build with GTK+ 3.16.

PR:		201980
Obtained from:	upstream
This commit is contained in:
Koop Mast 2015-08-05 07:24:59 +00:00
parent 528d2a79ec
commit a0c53ab7c8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=393573

View File

@ -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