Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ev-properties.c')
-rw-r--r--shell/ev-properties.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-properties.c b/shell/ev-properties.c
index e2dba3d..7830384 100644
--- a/shell/ev-properties.c
+++ b/shell/ev-properties.c
@@ -152,12 +152,12 @@ ev_properties_new (const EvDocumentInfo *info, GtkTreeModel *fonts)
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);
}