diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-13 15:00:42 +0100 |
---|---|---|
committer | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-25 13:04:32 +0100 |
commit | 837631c6cfa189280f9e723481f2251de56a1d92 (patch) | |
tree | bb50d5b7404c3f7a5363742ee7f91e9b7e0dc552 /include | |
parent | eaa21b726db220c7883453f197aac81a6d35b201 (diff) |
LIBLOK: implement getDocumentType, make doctypes unique.
Change-Id: I6cf810af55284cb6ddd9e0bfd879fd19508d127a
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h index db9aff2519a3..77a8d0f44fc7 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -33,10 +33,11 @@ typedef struct _LibreOfficeKitDocumentClass LibreOfficeKitDocumentClass; #ifdef LOK_USE_UNSTABLE_API typedef enum { - WRITER, - SPREADSHEET, - PRESENTATION, - OTHER + LOK_DOCTYPE_TEXT, + LOK_DOCTYPE_SPREADSHEET, + LOK_DOCTYPE_PRESENTATION, + LOK_DOCTYPE_DRAWING, + LOK_DOCTYPE_OTHER } LibreOfficeKitDocumentType; #endif // LOK_USE_UNSTABLE_API |