[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: simple question: get menu item string
- From: Carlos Pereira <carlos pehoe civil ist utl pt>
- To: gtk-app-devel-list gnome org
- Subject: Re: simple question: get menu item string
- Date: Wed, 18 Oct 2000 19:20:50 +0100
>I am trying to find the function that returns the string of the selected
>item.
gchar *string;
GtkWidget *label = GTK_BIN (menu_item)->child;
gtk_label_get (GTK_LABEL (label), &string);
You don't need to malloc or free string, it's
just a pointer to the string allocated by Gtk.
Of course it's gone when the menu_item is destroyed.
Carlos
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]