aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.c')
-rw-r--r--calendar/gui/dialogs/comp-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 61ce7e072e..7d619380b7 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -811,18 +811,18 @@ make_icon_from_comp (CalComponent *comp)
CalComponentVType type;
if (!comp)
- return EVOLUTION_ICONSDIR "/evolution-calendar-mini.png";
+ return EVOLUTION_IMAGESDIR "/evolution-calendar-mini.png";
type = cal_component_get_vtype (comp);
switch (type) {
case CAL_COMPONENT_EVENT:
- return EVOLUTION_ICONSDIR "/buttons/new_appointment.png";
+ return EVOLUTION_IMAGESDIR "/buttons/new_appointment.png";
break;
case CAL_COMPONENT_TODO:
- return EVOLUTION_ICONSDIR "/buttons/new_task.png";
+ return EVOLUTION_IMAGESDIR "/buttons/new_task.png";
break;
default:
- return EVOLUTION_ICONSDIR "/evolution-calendar-mini.png";
+ return EVOLUTION_IMAGESDIR "/evolution-calendar-mini.png";
}
}