Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/ev-document-info.h
diff options
context:
space:
mode:
Diffstat (limited to 'backend/ev-document-info.h')
-rw-r--r--backend/ev-document-info.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/backend/ev-document-info.h b/backend/ev-document-info.h
index 85965da..15d27d0 100644
--- a/backend/ev-document-info.h
+++ b/backend/ev-document-info.h
@@ -75,11 +75,11 @@ typedef enum
struct _EvDocumentInfo
{
- const char *title;
- const char *format; /* eg, "pdf-1.5" */
- const char *author;
- const char *subject;
- const char *keywords;
+ char *title;
+ char *format; /* eg, "pdf-1.5" */
+ char *author;
+ char *subject;
+ char *keywords;
EvDocumentLayout layout;
EvDocumentMode mode;
GDate creation_date;
@@ -89,6 +89,8 @@ struct _EvDocumentInfo
guint fields_mask;
};
+void ev_document_info_free (EvDocumentInfo *info);
+
G_END_DECLS
#endif /* EV_DOCUMENT_INFO_H */