Mercurial > pidgin
changeset 4350:7142f59bec2c
[gaim-migrate @ 4615]
import crash fix
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sun, 19 Jan 2003 23:08:19 +0000 |
parents | 0c68d402f59f |
children | bd1db4c2e00b |
files | src/dialogs.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dialogs.c Sun Jan 19 22:16:52 2003 +0000 +++ b/src/dialogs.c Sun Jan 19 23:08:19 2003 +0000 @@ -3323,14 +3323,14 @@ /* The dialog for import/export */ /*------------------------------------------------------------------------*/ -static void do_import_dialog(GtkWidget *w, struct gaim_connection *gc) +static void do_import_dialog(GtkWidget *w, gpointer data) { const char *file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(importdialog)); if (file_is_dir(file, importdialog)) { return; } if (g_slist_find(connections, importgc)) { - do_import(gc->user, file); + do_import(importgc->user, file); gaim_blist_save(); } destroy_dialog(NULL, importdialog);