From: "dodi-nug" <[EMAIL PROTECTED]> > > Well, I thimk the funtion, gtk_entry_get_text(), make a > problem. > I can't get any character from entries. The docs say this is a deprecated function. Why don't you try: something like: msg = gtk_editable_get_chars ((GtkEditable*) msg_text, 0, -1); where 0 is the start_pos, and -1 the default 'get everything' end_pos. _______________________________________________ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list
