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 a

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. On Sat, Sep 06, 2014 at 08:08:34AM +0200, Gergely Polonkai wrote: > On 6 Sep 2014 03:12, "Gary Kline" wrote: > > > > = > > Organization: Thought Unlimited.

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 t

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

2014-09-05 Thread Gergely Polonkai
On 6 Sep 2014 03: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 using > > s = gtk_label_get_text(GTK_LABEL((GtkWidget)buf)); >

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

more of a C question than GTK+3.0??

2014-09-05 Thread Gary Kline
= 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 = gtk_label_get_text(GTK_LABEL((GtkWidget)buf)); fails. (with contains the String "label1") I