comparison src/blist.c @ 6473:2311f3761ed2

[gaim-migrate @ 6982] We shouldn't notify people that we're converting the buddy list, since it doesn't really take long, and we don't do that for preferences, accounts, or pounces. However, I've only #if 0'd it out, so if somebody feels this is *really* important, we can easily put it back. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 15 Aug 2003 03:59:00 +0000
parents ccfdf9f2cdd1
children 70d5122bc3ff
comparison
equal deleted inserted replaced
6472:6acab949d5cd 6473:2311f3761ed2
1792 g_free(msg); 1792 g_free(msg);
1793 } 1793 }
1794 } else if(g_list_length(gaim_accounts_get_all())) { 1794 } else if(g_list_length(gaim_accounts_get_all())) {
1795 GMainContext *ctx; 1795 GMainContext *ctx;
1796 1796
1797 #if 0
1797 /* rob wants to inform the user that their buddy lists are 1798 /* rob wants to inform the user that their buddy lists are
1798 * being converted */ 1799 * being converted */
1799 msg = g_strdup_printf(_("Gaim is converting your old buddy lists " 1800 msg = g_strdup_printf(_("Gaim is converting your old buddy lists "
1800 "to a new format, which will now be located at %s"), 1801 "to a new format, which will now be located at %s"),
1801 filename); 1802 filename);
1805 /* now, let gtk actually display the dialog before we start anything */ 1806 /* now, let gtk actually display the dialog before we start anything */
1806 ctx = g_main_context_default(); 1807 ctx = g_main_context_default();
1807 1808
1808 while(g_main_context_pending(ctx)) 1809 while(g_main_context_pending(ctx))
1809 g_main_context_iteration(ctx, FALSE); 1810 g_main_context_iteration(ctx, FALSE);
1811 #endif
1810 1812
1811 /* read in the old lists, then save to the new format */ 1813 /* read in the old lists, then save to the new format */
1812 for(accts = gaim_accounts_get_all(); accts; accts = accts->next) { 1814 for(accts = gaim_accounts_get_all(); accts; accts = accts->next) {
1813 do_import(accts->data, NULL); 1815 do_import(accts->data, NULL);
1814 } 1816 }