On 06/27/2012 04:13 AM, Richard Shann wrote:
On Tue, 2012-06-26 at 23:10 -0500, Jeremiah Benham wrote:
I get these errors when trying to compile git:
exportlilypond.o: In function `output_score_to_buffer':
sorry, I changed Makefile.in instead of Makefile.am,
and then this built ok for reasons I am not so clear about, probably I
did make clean instead of make distclean :(

You may not have run ./autogen.sh. Running this will replace Makefile.in.

I am not getting these errors:
scorelayout.c:828:16: error: ‘GtkWidget’ has no member named ‘allocation’
scorelayout.c:828:46: error: ‘GtkWidget’ has no member named ‘allocation’

In gtk3 widget allocation needs to be accessed like this:
GtkAllocation allocation;
gtk_widget_get_allocation (window, &allocation);

Use this to get the members of the structure:
allocation.x
allocation.y
allocation.width
allocation.height

Jeremiah


Richard



_______________________________________________
Denemo-devel mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/denemo-devel



_______________________________________________
Denemo-devel mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/denemo-devel

Reply via email to