aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/print.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:24:42 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:37:20 +0800
commit8a186c3588d3598857c36e2122fa68d01eba30fd (patch)
tree731078659d4e04af8346c5ca68512d8537b3707a /calendar/gui/print.c
parent2bf3460cd3eb0853a1d10a6e36f5091898a5533f (diff)
downloadgsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.gz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.bz2
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.lz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.xz
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.tar.zst
gsoc2013-evolution-8a186c3588d3598857c36e2122fa68d01eba30fd.zip
Coding style cleanups.
Diffstat (limited to 'calendar/gui/print.c')
-rw-r--r--calendar/gui/print.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c
index d3b6068ca9..a63285465a 100644
--- a/calendar/gui/print.c
+++ b/calendar/gui/print.c
@@ -1466,12 +1466,12 @@ print_day_details (GtkPrintContext *context, GnomeCalendar *gcal, time_t whence,
gint x, y;
if (!pixbuf) {
- const gchar **xpm = (const gchar **)jump_xpm;
+ const gchar **xpm = (const gchar **) jump_xpm;
/* this ugly thing is here only to get rid of compiler warning
about unused 'jump_xpm_focused' */
if (pixbuf)
- xpm = (const gchar **)jump_xpm_focused;
+ xpm = (const gchar **) jump_xpm_focused;
pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
}
@@ -1779,12 +1779,12 @@ print_week_event (GtkPrintContext *context, PangoFontDescription *font,
}
if (!pixbuf) {
- const gchar **xpm = (const gchar **)jump_xpm;
+ const gchar **xpm = (const gchar **) jump_xpm;
/* this ugly thing is here only to get rid of compiler warning
about unused 'jump_xpm_focused' */
if (pixbuf)
- xpm = (const gchar **)jump_xpm_focused;
+ xpm = (const gchar **) jump_xpm_focused;
pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
}
@@ -2551,12 +2551,12 @@ print_work_week_day_details (GtkPrintContext *context, GnomeCalendar *gcal,
gint x, y;
if (!pixbuf) {
- const gchar **xpm = (const gchar **)jump_xpm;
+ const gchar **xpm = (const gchar **) jump_xpm;
/* this ugly thing is here only to get rid of compiler warning
about unused 'jump_xpm_focused' */
if (pixbuf)
- xpm = (const gchar **)jump_xpm_focused;
+ xpm = (const gchar **) jump_xpm_focused;
pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
}
@@ -3104,7 +3104,7 @@ print_calendar (GnomeCalendar *gcal,
}
}
- pcali.gcal = (GnomeCalendar *)gcal;
+ pcali.gcal = (GnomeCalendar *) gcal;
pcali.start = start;
operation = e_print_operation_new ();