Re: entry problem /segfaul again)
- From: Diego Zuccato <diego otello alma unibo it>
- Cc: listagtk <gtk-list gnome org>
- Subject: Re: entry problem /segfaul again)
- Date: Mon, 02 Dec 2002 16:03:28 +0000
Mauro Venanzi wrote:
> it segfauls
Are you using v or entry_text ?
If it still segfaults, it means you destroyed the gtkentry from where
you're getting text.
To workaround:
> > static gchar *entry_text;(global to file)
static gchar* entry_text=NULL;
> > void get_the_text (GtkWidget *widget, GtkWidget *entry)
> > {
if(entry_text) g_free(entry_text); // Maybe the if() isn't needed...
entry_text=g_strdup(gtk_entry_get_text(GTK_ENTRY(entry)));
> > printf("Entry contents: %s\n", entry_text);
> > }
Now does it work?
PS: never used Anjuta IDE or at least Glade to start drawing interfaces?
BYtE,
Diego.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]