# HG changeset patch # User tomkiewicz@cpw.pidgin.im # Date 1318328820 0 # Node ID 2b3b3ffc9d285cb5d771771e641af8451d41064a # Parent f877a2315d7e020dadca051cd2dabd0e8f448a6c Gadu-Gadu: reorder actions to clean up the mess in gg account menu diff -r f877a2315d7e -r 2b3b3ffc9d28 libpurple/protocols/gg/gg.c --- 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; }