It sounds like you are generating changed signals when you do not want to
(ie when you are changing the text). I used the following to get rid of this
problem:

g_signal_handler_block_by_func(entryWidget, cb_function, data);
gtk_entry_set_text(entryWidget, "newtext");
g_signal_handlers_unblock_by_func(entryWidget, cb_function, data);
g_signal_stap_emissiona_by_name(entryWidget, "changed");

Sydney
_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to