comparison src/gtkft.c @ 4661:ccc304cb0389

[gaim-migrate @ 4972] I feel like one of them email spammers. So as not to completely waste a few KB of bandwidth, let me ask you a question: Who do you think is cooler, Bono or Sting? I definately think Sting is cooler. I mean, Bono is pretty cool and all, but Sting just has that whole "I'm pretty old" thing going on. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 07 Mar 2003 06:00:37 +0000
parents 92f401df564a
children 3145c5c45877
comparison
equal deleted inserted replaced
4660:92f401df564a 4661:ccc304cb0389
1025 data->filesel = gtk_file_selection_new(_("Gaim - Open...")); 1025 data->filesel = gtk_file_selection_new(_("Gaim - Open..."));
1026 else 1026 else
1027 data->filesel = gtk_file_selection_new(_("Gaim - Save As...")); 1027 data->filesel = gtk_file_selection_new(_("Gaim - Save As..."));
1028 1028
1029 if (gaim_xfer_get_filename(xfer) == NULL) 1029 if (gaim_xfer_get_filename(xfer) == NULL)
1030 init_str = g_strdup_printf("%s%c", cur_dir, G_DIR_SEPARATOR); 1030 init_str = g_strdup_printf("%s" G_DIR_SEPARATOR_S, cur_dir);
1031 else 1031 else
1032 init_str = g_build_filename(cur_dir, gaim_xfer_get_filename(xfer), 1032 init_str = g_build_filename(cur_dir, gaim_xfer_get_filename(xfer),
1033 NULL); 1033 NULL);
1034 1034
1035 g_free(cur_dir); 1035 g_free(cur_dir);