diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-06 09:58:30 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-06 09:58:30 +0800 |
commit | 89087493e833b711d4264de1ba924d369bd2b8ba (patch) | |
tree | e2f97f9a6de5929102a1e75f12bf09849a2b358e /calendar/gui/e-itip-control.c | |
parent | 0494cd37730ddca4932352cdee09d702a546ca55 (diff) | |
download | gsoc2013-evolution-89087493e833b711d4264de1ba924d369bd2b8ba.tar.gz gsoc2013-evolution-89087493e833b711d4264de1ba924d369bd2b8ba.tar.zst gsoc2013-evolution-89087493e833b711d4264de1ba924d369bd2b8ba.zip |
Remove cruft. Rename ICONSDIR to IMAGESDIR. (gladedir, etspecdir,
* gui/Makefile.am (INCLUDES): Remove cruft. Rename ICONSDIR to
IMAGESDIR.
(gladedir, etspecdir, serverdir): Remove definitions
(libevolution_calendar_la_LDFLAGS): Remove -export-dynamic, add
-module.
* gui/calendar-config.c: #include <string.h>
* gui/calendar-component.c (add_creatable_item):
s/ICONSDIR/IMAGESDIR/
* gui/comp-util.c: #include <string.h>
* gui/e-alarm-list.c: #include e-time-utils.h
(row_deleted): Remove unused variable.
(e_alarm_list_append): Likewise.
* gui/e-date-time-list.c: #include e-time-utils.h, timeutil.h,
calendar-config.h
(row_deleted): Remove unused variable
(e_date_time_list_append): Likewise.
* gui/e-day-view.c (e_day_view_unrealize): Remove unused var
(e_day_view_style_set): Likewise.
(e_day_view_set_event_font_cb): Likewise.
* gui/e-day-view-time-item.c: #include <string.h>
(e_day_view_time_item_get_column_width): Remove unused variable.
* gui/e-itip-control.c: #include <unistd.h>
(url_requested_cb): s/ICONSDIR/IMAGESDIR/
* gui/e-week-view.c (e_week_view_unrealize): Remove unused variable
(e_week_view_style_set): Likewise
* gui/e-week-view-titles-item.c: #include string.h
* gui/itip-bonobo-control.c: Likewise
* gui/print.c: Likewise
svn path=/trunk/; revision=19794
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r-- | calendar/gui/e-itip-control.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 0cd4e8e566..9d2c894781 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -28,6 +28,7 @@ #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> +#include <unistd.h> #include <glib.h> #include <gtk/gtkmisc.h> #include <libgnome/gnome-i18n.h> @@ -2042,7 +2043,7 @@ url_requested_cb (GtkHTML *html, const gchar *url, GtkHTMLStream *handle, gpoint int len, fd; char *path; - path = g_strdup_printf ("%s/%s", EVOLUTION_ICONSDIR, url); + path = g_strdup_printf ("%s/%s", EVOLUTION_IMAGESDIR, url); if ((fd = open (path, O_RDONLY)) == -1) { g_warning ("%s", g_strerror (errno)); |