Date: Wed, 5 Aug 2015 07:25:00 +0000 (UTC) From: Koop Mast <kwm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393573 - head/multimedia/lives/files Message-ID: <201508050725.t757P0YB080217@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kwm Date: Wed Aug 5 07:24:59 2015 New Revision: 393573 URL: https://svnweb.freebsd.org/changeset/ports/393573 Log: Fix a typo in gtk+ 3 function name. This fixes the build with GTK+ 3.16. PR: 201980 Obtained from: upstream Added: head/multimedia/lives/files/patch-src_widget-helper.c (contents, props changed) Added: head/multimedia/lives/files/patch-src_widget-helper.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/lives/files/patch-src_widget-helper.c Wed Aug 5 07:24:59 2015 (r393573) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508050725.t757P0YB080217>