signal after form is built
- From: "Faria, Sydney C" <sydney faria pw utc com>
- To: "Gtk app devel list (E-mail)" <gtk-app-devel-list gnome org>
- Subject: signal after form is built
- Date: Tue, 6 Sep 2005 07:52:54 -0400
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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]