diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 01:24:42 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:11 +0800 |
commit | 54da4fc09cf226fdb59b9f0c70555e2e57dc1f91 (patch) | |
tree | c62c9ac6d08670dffc400ff00117508512ce4f8b /calendar/gui/print.c | |
parent | fe20f70779fb486169a0735499d24e001ffa0cab (diff) | |
download | gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.gz gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.zst gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.zip |
Coding style cleanups.
Diffstat (limited to 'calendar/gui/print.c')
-rw-r--r-- | calendar/gui/print.c | 14 |
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 (); |