diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-10-21 21:22:40 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-10-21 21:22:40 +0800 |
commit | 83e0eceb85a5362835421555408e90013664b00a (patch) | |
tree | 6193292ba2fb6995a6c1be4e17bb41275eddf357 /libempathy-gtk/empathy-main-window.c | |
parent | 004e78f70d1088c94bdd00e66c96260abe03cae9 (diff) | |
download | gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.tar gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.tar.gz gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.tar.bz2 gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.tar.lz gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.tar.xz gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.tar.zst gsoc2013-empathy-83e0eceb85a5362835421555408e90013664b00a.zip |
Don't allow to change account if we are editing information of
2007-10-21 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-contact-dialogs.h:
* libempathy-gtk/empathy-contact-dialogs.c:
* libempathy-gtk/empathy-main-window.c:
* libempathy-gtk/empathy-contact-list-view.c: Don't allow to change
account if we are editing information of self-contact.
svn path=/trunk/; revision=385
Diffstat (limited to 'libempathy-gtk/empathy-main-window.c')
-rw-r--r-- | libempathy-gtk/empathy-main-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-main-window.c b/libempathy-gtk/empathy-main-window.c index 26e54226f..8655c0c99 100644 --- a/libempathy-gtk/empathy-main-window.c +++ b/libempathy-gtk/empathy-main-window.c @@ -668,7 +668,7 @@ main_window_edit_personal_information_cb (GtkWidget *widget, contact = empathy_contact_factory_get_user (factory, account); empathy_contact_information_dialog_show (contact, GTK_WINDOW (window->window), - TRUE, FALSE); + TRUE, TRUE); g_slist_foreach (accounts, (GFunc) g_object_unref, NULL); g_slist_free (accounts); g_object_unref (factory); |