+2005-06-10 Marco Pesenti Gritti <mpg@redhat.com>
+
+ * backend/ev-document-info.h:
+ * shell/ev-properties.c: (ev_properties_new):
+
+ s/GTime*/GTime. Not sure why we was using a pointer
+ at all there!
+
Wed Jun 8 01:04:22 2005 Jonathan Blandford <jrb@redhat.com>
* shell/ev-sidebar-thumbnails.c: Use a GtkIconView in certain
set_property (xml, CREATOR_PROPERTY, info->creator);
}
if (info->fields_mask & EV_DOCUMENT_INFO_CREATION_DATE) {
- text = ev_properties_format_date ((GTime) info->creation_date);
+ text = ev_properties_format_date (info->creation_date);
set_property (xml, CREATION_DATE_PROPERTY, text);
g_free (text);
}
if (info->fields_mask & EV_DOCUMENT_INFO_MOD_DATE) {
- text = ev_properties_format_date ((GTime) info->modified_date);
+ text = ev_properties_format_date (info->modified_date);
set_property (xml, MOD_DATE_PROPERTY, text);
g_free (text);
}