Fixing bug 255366. Fixing gtk2 file picker crash on AMD64 due to differences in argument passing to varargs vs. non-varargs functions. Patch by bryner@brianryner.com, r=caillon@gmail.com, sr=jst@mozilla.org

This commit is contained in:
jst%mozilla.jstenback.com 2004-09-22 04:30:49 +00:00
Родитель 3d64033baa
Коммит 418cf22fe4
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -84,10 +84,7 @@ typedef GtkWidget* (*_gtk_file_chooser_dialog_new_fn)(const gchar *title,
GtkWindow *parent,
GtkFileChooserAction action,
const gchar *first_button_text,
gint first_button_response,
const gchar *second_button_text,
gint second_button_response,
const gchar *third_button_text /* NULL */);
...);
typedef void (*_gtk_file_chooser_set_select_multiple_fn)(GtkFileChooser* chooser, gboolean truth);
typedef void (*_gtk_file_chooser_set_current_name_fn)(GtkFileChooser* chooser, const gchar* name);
typedef void (*_gtk_file_chooser_set_current_folder_fn)(GtkFileChooser* chooser, const gchar* folder);