=
Organization: Thought Unlimited. Public service Unix since 1986.
Of_Interest: With 28 years of service to the Unix community.
On Sat, Jul 19, 2014 at 07:59:59PM -0400, Chris Moller wrote:
> Compiles fine for me under gtk3-3.10.9-1, only complaining about line 67:
>
>box = gtk_hbox_
Compiles fine for me under gtk3-3.10.9-1, only complaining about line 67:
box = gtk_hbox_new (FALSE, 0);
That's deprecated and should be
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
It creates a wide, mostly empty, window with a couple of big up/down
buttons at the left.
On 07/