aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-13 10:14:32 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-13 10:14:32 +0800
commit7d53a155c8dcf9e232edcb3c70df6584713e1076 (patch)
treec185bab119a6ffeffebbbd70db483a3e71d1a5db /addressbook/gui/component/select-names/e-select-names.c
parentbecc84e5c51f8150b8db1fb28337fa55f7c14caf (diff)
downloadgsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.gz
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.bz2
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.lz
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.xz
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.zst
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.zip
push_in = FALSE, no clue why... :) (_arrow_pressed): call
2002-11-12 Chris Toshok <toshok@ximian.com> * gui/contact-editor/e-contact-editor.c (_popup_position): push_in = FALSE, no clue why... :) (_arrow_pressed): call g_signal_stop_emission here, seems to fix things. * gui/component/select-names/e-select-names.c (e_select_names_init): fix warnings. * gui/component/select-names/e-select-names-manager.c (e_select_names_manager_activate_dialog): fix warning. * gui/component/addressbook.c (forget_passwords_cb): remove the PENDING_PORT ifdef. (load_uri_auth_cb): same. (addressbook_authenticate): same. * gui/component/addressbook-factory.c (main): same. * gui/component/addressbook-storage.c (load_source_data): be silent about text nodes if they contain nothing but whitespace. svn path=/trunk/; revision=18728
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.c')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 7120537070..41c5a628c1 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -511,7 +511,7 @@ e_select_names_init (ESelectNames *e_select_names)
if (e_select_names->status_message) {
g_signal_connect (e_select_names->model, "status_message",
G_CALLBACK (status_message), e_select_names);
- g_object_weak_ref (e_select_names->status_message, clear_widget, &e_select_names->status_message);
+ g_object_weak_ref (G_OBJECT (e_select_names->status_message), clear_widget, &e_select_names->status_message);
}
e_select_names->categories = glade_xml_get_widget (gui, "custom-categories");
@@ -520,7 +520,7 @@ e_select_names_init (ESelectNames *e_select_names)
if (e_select_names->categories) {
g_signal_connect(e_select_names->categories, "changed",
G_CALLBACK(categories_changed), e_select_names);
- g_object_weak_ref (e_select_names->categories, clear_widget, &e_select_names->categories);
+ g_object_weak_ref (G_OBJECT (e_select_names->categories), clear_widget, &e_select_names->categories);
}
e_select_names->select_entry = glade_xml_get_widget (gui, "entry-select");
@@ -531,7 +531,7 @@ e_select_names_init (ESelectNames *e_select_names)
G_CALLBACK(select_entry_changed), e_select_names);
g_signal_connect(e_select_names->select_entry, "activate",
G_CALLBACK(update_query), e_select_names);
- g_object_weak_ref (e_select_names->select_entry, clear_widget, &e_select_names->select_entry);
+ g_object_weak_ref (G_OBJECT (e_select_names->select_entry), clear_widget, &e_select_names->select_entry);
}
button = glade_xml_get_widget (gui, "button-find");