diff options
author | Milan Crha <mcrha@redhat.com> | 2014-04-11 16:49:15 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-04-11 16:49:15 +0800 |
commit | 3bd387bc25f784a259d2a99c997884bd36aee3e7 (patch) | |
tree | b176bd81f8f54b3b080d973e0672aceb26c26d75 /mail/e-mail-config-identity-page.c | |
parent | 0d1eef0daddb38ccad1fc9caa99d32f4e84bb100 (diff) | |
download | gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.tar gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.tar.gz gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.tar.bz2 gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.tar.lz gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.tar.xz gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.tar.zst gsoc2013-evolution-3bd387bc25f784a259d2a99c997884bd36aee3e7.zip |
Bug #684425 - Do not pass NULL text to gtk_entry_set_text()
Diffstat (limited to 'mail/e-mail-config-identity-page.c')
-rw-r--r-- | mail/e-mail-config-identity-page.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/e-mail-config-identity-page.c b/mail/e-mail-config-identity-page.c index 6c9072f3bf..5526105140 100644 --- a/mail/e-mail-config-identity-page.c +++ b/mail/e-mail-config-identity-page.c @@ -323,7 +323,7 @@ mail_config_identity_page_constructed (GObject *object) gtk_grid_attach (GTK_GRID (container), widget, 1, 2, 1, 1); gtk_widget_show (widget); - g_object_bind_property ( + e_binding_bind_object_text_property ( source, "display-name", widget, "text", G_BINDING_BIDIRECTIONAL | @@ -369,7 +369,7 @@ mail_config_identity_page_constructed (GObject *object) gtk_grid_attach (GTK_GRID (container), widget, 1, 1, 1, 1); gtk_widget_show (widget); - g_object_bind_property ( + e_binding_bind_object_text_property ( extension, "name", widget, "text", G_BINDING_BIDIRECTIONAL | @@ -401,7 +401,7 @@ mail_config_identity_page_constructed (GObject *object) gtk_grid_attach (GTK_GRID (container), widget, 1, 2, 1, 1); gtk_widget_show (widget); - g_object_bind_property ( + e_binding_bind_object_text_property ( extension, "address", widget, "text", G_BINDING_BIDIRECTIONAL | @@ -452,7 +452,7 @@ mail_config_identity_page_constructed (GObject *object) gtk_grid_attach (GTK_GRID (container), widget, 1, 1, 2, 1); gtk_widget_show (widget); - g_object_bind_property ( + e_binding_bind_object_text_property ( extension, "reply-to", widget, "text", G_BINDING_BIDIRECTIONAL | @@ -479,7 +479,7 @@ mail_config_identity_page_constructed (GObject *object) gtk_grid_attach (GTK_GRID (container), widget, 1, 2, 2, 1); gtk_widget_show (widget); - g_object_bind_property ( + e_binding_bind_object_text_property ( extension, "organization", widget, "text", G_BINDING_BIDIRECTIONAL | |