diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-10-05 01:15:57 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-10-05 01:15:57 +0800 |
commit | f0df2712bf813348aadaf94ecaa04870cab3d0d9 (patch) | |
tree | b76b77283967de4a8566021dc096edcfa2fdc0a5 | |
parent | 4f9f4f44b49641a9308cf27684ceb532a4353871 (diff) | |
download | gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.tar gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.tar.gz gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.tar.bz2 gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.tar.lz gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.tar.xz gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.tar.zst gsoc2013-evolution-f0df2712bf813348aadaf94ecaa04870cab3d0d9.zip |
Use g_list_append() correctly. (print_todo_details_cb): Likewise.
2000-10-04 Federico Mena Quintero <federico@helixcode.com>
* gui/print.c (print_day_summary_cb): Use g_list_append() correctly.
(print_todo_details_cb): Likewise.
(print_day_summary): Initialize psi.events. This code was
obviously never tested.
(print_todo_details): Likewise.
(print_day_details): Initialize pdi.slots.
svn path=/trunk/; revision=5711
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/print.c | 46 |
2 files changed, 33 insertions, 20 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 4e21cbf784..7caf784a9a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2000-10-04 Federico Mena Quintero <federico@helixcode.com> + * gui/print.c (print_day_summary_cb): Use g_list_append() correctly. + (print_todo_details_cb): Likewise. + (print_day_summary): Initialize psi.events. This code was + obviously never tested. + (print_todo_details): Likewise. + (print_day_details): Initialize pdi.slots. + * gui/print.c (range_selector_new): Fix strftime() %a versus %b confusion. Fixes bugzilla #644. (range_selector_new): Fix the whole localization mess by making diff --git a/calendar/gui/print.c b/calendar/gui/print.c index e621951cf1..10842bebd0 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -518,7 +518,7 @@ bound_text(GnomePrintContext *pc, GnomeFont *font, char *text, double left, doub } /* - * Print Day Details + * Print Day Details */ static gboolean print_day_details_cb (CalComponent *comp, time_t istart, time_t iend, gpointer data) @@ -527,19 +527,19 @@ print_day_details_cb (CalComponent *comp, time_t istart, time_t iend, gpointer d GList *l, *col = NULL; struct pdinfo *pdi = (struct pdinfo *)data; struct einfo *ei; - + ei = g_new (struct einfo, 1); cal_component_get_summary (comp, &text); ei->text = g_strdup (text.value); - + ei->start = istart; ei->end = iend; ei->count = 0; - + for (l = pdi->slots; l; l = l->next) { struct einfo *testei; - + col = (GList *)l->data; testei = (struct einfo *)col->data; @@ -548,13 +548,13 @@ print_day_details_cb (CalComponent *comp, time_t istart, time_t iend, gpointer d l->data = col; return TRUE; } - + testei->count++; ei->count++; } - + col = NULL; - col = g_list_prepend (col, ei); + col = g_list_prepend (col, ei); pdi->slots = g_list_append (pdi->slots, col); return TRUE; @@ -619,22 +619,24 @@ print_day_details (GnomePrintContext *pc, GnomeCalendar *gcal, time_t whence, start = time_day_begin(whence); end = time_day_end(start); + pdi.slots = NULL; + cal_client_generate_instances (client, CALOBJ_TYPE_EVENT, start, end, print_day_details_cb, &pdi); - + num_slots = g_list_length (pdi.slots); slot_width = (right-left-width)/num_slots; for (i = num_slots, l = pdi.slots; l; i--, l = l->next) { GList *e = (GList *)l->data; - + for (; e; e = e->next) { struct einfo *ei = (struct einfo *)e->data; y = top - (top - bottom) * (ei->start - start) / (end - start) - 1; yend = top - (top - bottom) * (ei->end - start) / (end - start) + 1; x = left + width + slot_width * (num_slots - i); - + if (num_slots > 0) x++; @@ -642,9 +644,9 @@ print_day_details (GnomePrintContext *pc, GnomeCalendar *gcal, time_t whence, xend = x + (num_slots - ei->count) * slot_width - 2; else xend = x + slot_width - 2; - + print_border (pc, x, xend, y, yend, 0.0, 0.9); - + bound_text (pc, font_summary, ei->text, x, xend, y, yend, 0); g_free (ei); @@ -661,7 +663,7 @@ print_day_details (GnomePrintContext *pc, GnomeCalendar *gcal, time_t whence, } /* - * Print Day Summary + * Print Day Summary */ #if 0 #define TIME_FMT "%X" @@ -680,12 +682,12 @@ print_day_summary_cb (CalComponent *comp, time_t istart, time_t iend, gpointer d cal_component_get_summary (comp, &text); ei->text = g_strdup (text.value); - + ei->start = istart; ei->end = iend; ei->count = 0; - g_list_append (psi->events, ei); + psi->events = g_list_append (psi->events, ei); return TRUE; } @@ -721,6 +723,8 @@ print_day_summary (GnomePrintContext *pc, GnomeCalendar *gcal, time_t whence, titled_box (pc, buf, font_summary, ALIGN_RIGHT | ALIGN_BORDER, &left, &right, &top, &bottom, 0.0); + psi.events = NULL; + cal_client_generate_instances (client, CALOBJ_TYPE_EVENT, start, end, print_day_summary_cb, &psi); inc = size*0.3; @@ -776,11 +780,11 @@ print_day_summary (GnomePrintContext *pc, GnomeCalendar *gcal, time_t whence, } y += gnome_font_get_size (font_summary) - inc; - + g_free (ei); } g_list_free (psi.events); - + gtk_object_unref (GTK_OBJECT (font_summary)); } @@ -926,7 +930,7 @@ print_todo_details_cb (CalComponent *comp, time_t istart, time_t iend, gpointer cal_component_get_summary (comp, &text); ei->text = g_strdup (text.value); - g_list_append (pti->todos, ei); + pti->todos = g_list_append (pti->todos, ei); return TRUE; } @@ -954,6 +958,8 @@ print_todo_details (GnomePrintContext *pc, GnomeCalendar *gcal, time_t start, ti y = top - 3; yend = bottom - 2; + pti.todos = NULL; + cal_client_generate_instances (client, CALOBJ_TYPE_TODO, start, end, print_todo_details_cb, &pti); @@ -1178,7 +1184,7 @@ print_calendar (GnomeCalendar *gcal, gboolean preview, time_t at, PrintView defa gnome_print_master_set_copies (gpm, copies, collate); pc = gnome_print_master_get_context (gpm); - + l = gnome_paper_lmargin (paper_info); r = gnome_paper_pswidth (paper_info) - gnome_paper_rmargin (paper_info); t = gnome_paper_psheight (paper_info) - gnome_paper_tmargin (paper_info); |