comparison src/info.h @ 138:71e1ebee420e

replaced gchar* path with FileData *fd
author nadvornik
date Tue, 11 Sep 2007 20:06:29 +0000
parents d907d608745f
children f6e307c7bad6
comparison
equal deleted inserted replaced
137:be3328a58875 138:71e1ebee420e
20 GtkWidget *window; 20 GtkWidget *window;
21 ImageWindow *image; 21 ImageWindow *image;
22 22
23 GList *list; 23 GList *list;
24 24
25 const gchar *path; 25 FileData *fd;
26 26
27 GtkWidget *notebook; 27 GtkWidget *notebook;
28 GtkWidget *name_entry; 28 GtkWidget *name_entry;
29 29
30 GtkWidget *button_next; 30 GtkWidget *button_next;
35 35
36 gint updated; 36 gint updated;
37 }; 37 };
38 38
39 39
40 void info_window_new(const gchar *path, GList *list); 40 void info_window_new(FileData *fd, GList *list);
41 41
42 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y, 42 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y,
43 const gchar *description, const gchar *text); 43 const gchar *description, const gchar *text);
44 44
45 45