Re: more of a C question than GTK+3.0??

2014-09-06 Thread Gergely Polonkai
On 6 Sep 2014 03:12, Gary Kline kl...@thought.org wrote: = Organization: Thought Unlimited. Public service Unix since 1986. Of_Interest: With 28 years of service to the Unix community. things that I *thought* might work by using s =

Re: more of a C question than GTK+3.0??

2014-09-06 Thread Gary Kline
= Organization: Thought Unlimited. Public service Unix since 1986. Of_Interest: With 28 years of service to the Unix community. On Fri, Sep 05, 2014 at 09:43:00PM -0400, Chris Moller wrote: What do you mean, fails? What happens? And what do you want to happen? when I try to

Re: more of a C question than GTK+3.0??

2014-09-06 Thread Gergely Polonkai
What I would do instead is: GtkWidget **label[1000]; // if you have a dynamic number of labels, consider using a GArray maybe int i = 0; label[i++] = gtk_label_new(first text); // this will be label[0] label[i++] = gtk_label_new(second text); // this will be label[1] … After this, instead of

Re: more of a C question than GTK+3.0??

2014-09-06 Thread Gary Kline
= Organization: Thought Unlimited. Public service Unix since 1986. Of_Interest: With 28 years of service to the Unix community. well, I hate to telll fibs, but I'm still at it. It has been years since I listened to my bio; 'snot that bad.. On Sat, Sep 06, 2014

Re: more of a C question than GTK+3.0??

2014-09-05 Thread Chris Moller
What do you mean, fails? What happens? And what do you want to happen? On 09/05/14 21:12, Gary Kline wrote: = Organization: Thought Unlimited. Public service Unix since 1986. Of_Interest: With 28 years of service to the Unix community. things that I *thought* might work by