pidgin: 0982c9aa: Move the Local Alias field into the User...
rekkanoryo at pidgin.im
rekkanoryo at pidgin.im
Tue Apr 29 12:50:38 EDT 2008
-----------------------------------------------------------------
Revision: 0982c9aacd3dfa68da58b386663d7fdda43a11e4
Ancestor: a43a75447f7cd677cdc63c4bc960190b5802d016
Author: rekkanoryo at pidgin.im
Date: 2008-04-29T16:50:12
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/0982c9aacd3dfa68da58b386663d7fdda43a11e4
Modified files:
pidgin/gtkaccount.c
ChangeLog:
Move the Local Alias field into the User Options section of the account
modification dialog. This hopefully will help reduce some confusion about
the alias field.
-------------- next part --------------
============================================================
--- pidgin/gtkaccount.c eab593e665e6425c44421c59170ecfbc811cdcfb
+++ pidgin/gtkaccount.c 0b00a8c5085cb7e455858fded0f8f9d43d42e85b
@@ -496,10 +496,6 @@ add_login_options(AccountPrefsDialog *di
dialog->password_box = add_pref_box(dialog, vbox, _("_Password:"),
dialog->password_entry);
- /* Alias */
- dialog->alias_entry = gtk_entry_new();
- add_pref_box(dialog, vbox, _("_Local alias:"), dialog->alias_entry);
-
/* Remember Password */
dialog->remember_pass_check =
gtk_check_button_new_with_mnemonic(_("Remember pass_word"));
@@ -571,6 +567,10 @@ add_user_options(AccountPrefsDialog *dia
gtk_container_add(GTK_CONTAINER(frame), vbox);
gtk_widget_show(vbox);
+ /* Alias */
+ dialog->alias_entry = gtk_entry_new();
+ add_pref_box(dialog, vbox, _("_Local alias:"), dialog->alias_entry);
+
/* New mail notifications */
dialog->new_mail_check =
gtk_check_button_new_with_mnemonic(_("New _mail notifications"));
More information about the Commits
mailing list