diff options
author | Ted Gould <ted@gould.cx> | 2011-07-07 16:23:04 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-07 16:23:04 -0500 |
commit | 1819f029c3f3af6922e095e959e80b1ce446148b (patch) | |
tree | 7f1b50533fb2363bd26918be73dd1349fadb672e /src/timezone-completion.c | |
parent | 7cb01301fdb2e2889d8ab8c09275c25d9dd28f01 (diff) | |
parent | 51c6800c6f718c07bd0cd016a5acdf5652f7e9c4 (diff) | |
download | ayatana-indicator-datetime-1819f029c3f3af6922e095e959e80b1ce446148b.tar.gz ayatana-indicator-datetime-1819f029c3f3af6922e095e959e80b1ce446148b.tar.bz2 ayatana-indicator-datetime-1819f029c3f3af6922e095e959e80b1ce446148b.zip |
Import upstream version 0.2.91
Diffstat (limited to 'src/timezone-completion.c')
-rw-r--r-- | src/timezone-completion.c | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/src/timezone-completion.c b/src/timezone-completion.c index 6ba1e88..d190035 100644 --- a/src/timezone-completion.c +++ b/src/timezone-completion.c @@ -492,21 +492,26 @@ timezone_completion_watch_entry (TimezoneCompletion * completion, GtkEntry * ent } if (priv->entry) { g_signal_handler_disconnect (priv->entry, priv->changed_id); + priv->changed_id = 0; g_signal_handler_disconnect (priv->entry, priv->keypress_id); + priv->keypress_id = 0; g_object_remove_weak_pointer (G_OBJECT (priv->entry), (gpointer *)&priv->entry); gtk_entry_set_completion (priv->entry, NULL); } - guint id = g_signal_connect (entry, "changed", G_CALLBACK (entry_changed), completion); - priv->changed_id = id; + priv->entry = entry; - id = g_signal_connect (entry, "key-press-event", G_CALLBACK (entry_keypress), completion); - priv->keypress_id = id; + if (entry) { + guint id = g_signal_connect (entry, "changed", G_CALLBACK (entry_changed), completion); + priv->changed_id = id; - priv->entry = entry; - g_object_add_weak_pointer (G_OBJECT (entry), (gpointer *)&priv->entry); + id = g_signal_connect (entry, "key-press-event", G_CALLBACK (entry_keypress), completion); + priv->keypress_id = id; - gtk_entry_set_completion (entry, GTK_ENTRY_COMPLETION (completion)); + g_object_add_weak_pointer (G_OBJECT (entry), (gpointer *)&priv->entry); + + gtk_entry_set_completion (entry, GTK_ENTRY_COMPLETION (completion)); + } } static GtkListStore * @@ -640,7 +645,9 @@ timezone_completion_dispose (GObject * object) } if (priv->entry != NULL) { + gtk_entry_set_completion (priv->entry, NULL); g_object_remove_weak_pointer (G_OBJECT (priv->entry), (gpointer *)&priv->entry); + priv->entry = NULL; } if (priv->initial_model != NULL) { |