Mercurial > pidgin.yaz
changeset 32739:2b3b3ffc9d28
Gadu-Gadu: reorder actions to clean up the mess in gg account menu
author | tomkiewicz@cpw.pidgin.im |
---|---|
date | Tue, 11 Oct 2011 10:27:00 +0000 |
parents | f877a2315d7e |
children | 9740dd029827 |
files | libpurple/protocols/gg/gg.c |
diffstat | 1 files changed, 6 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/gg/gg.c Tue Oct 11 10:18:00 2011 +0000 +++ b/libpurple/protocols/gg/gg.c Tue Oct 11 10:27:00 2011 +0000 @@ -2756,14 +2756,16 @@ GList *m = NULL; PurplePluginAction *act; + act = purple_plugin_action_new(_("Change password..."), + ggp_change_passwd); + m = g_list_append(m, act); + act = purple_plugin_action_new(_("Find buddies..."), ggp_find_buddies); m = g_list_append(m, act); - m = g_list_append(m, NULL); - - act = purple_plugin_action_new(_("Change password..."), - ggp_change_passwd); + act = purple_plugin_action_new(_("Change status broadcasting"), + ggp_action_change_status_broadcasting); m = g_list_append(m, act); m = g_list_append(m, NULL); @@ -2788,10 +2790,6 @@ ggp_action_buddylist_load); m = g_list_append(m, act); - act = purple_plugin_action_new(_("Change status broadcasting"), - ggp_action_change_status_broadcasting); - m = g_list_append(m, act); - return m; }