diff options
Diffstat (limited to 'plugins/ipod-sync')
-rw-r--r-- | plugins/ipod-sync/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/ipod-sync/ical-format.c | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/plugins/ipod-sync/ChangeLog b/plugins/ipod-sync/ChangeLog index 143d1a3760..fc53b2bc0b 100644 --- a/plugins/ipod-sync/ChangeLog +++ b/plugins/ipod-sync/ChangeLog @@ -1,3 +1,11 @@ +2007-09-14 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes part of bug #476231 + + * ical-format.c: + Remove non-USE_GTKFILECHOOSER code. + GtkFileChooser has been around since 2004. + 2007-06-07 Gilles Dartiguelongue <dartigug@esiee.fr> * evolution-ipod-sync.c: (ipod_get_mount): diff --git a/plugins/ipod-sync/ical-format.c b/plugins/ipod-sync/ical-format.c index 3a27771dcf..e747255124 100644 --- a/plugins/ipod-sync/ical-format.c +++ b/plugins/ipod-sync/ical-format.c @@ -25,12 +25,8 @@ #endif #include <glib.h> #include <glib/gi18n.h> -#ifdef USE_GTKFILECHOOSER -# include <gtk/gtkfilechooser.h> -# include <gtk/gtkfilechooserdialog.h> -#else -# include <gtk/gtkfilesel.h> -#endif +#include <gtk/gtkfilechooser.h> +#include <gtk/gtkfilechooserdialog.h> #include <libgnomevfs/gnome-vfs-ops.h> #include <gtk/gtkmessagedialog.h> #include <gtk/gtkstock.h> |