diff options
author | rootavish <[email protected]> | 2014-06-19 14:19:48 +0530 |
---|---|---|
committer | rootavish <[email protected]> | 2014-06-19 14:19:48 +0530 |
commit | d57fa16e9e8c9091ebf826af94a0c3ad1a593596 (patch) | |
tree | 3969514d475a92c977fa15ee7e19ac37d5fe3575 /backend/epub/epub-document.h | |
parent | 3fd3e5708b0566b1392fa5e7f37a18de137a43e0 (diff) | |
download | atril-d57fa16e9e8c9091ebf826af94a0c3ad1a593596.tar.bz2 atril-d57fa16e9e8c9091ebf826af94a0c3ad1a593596.tar.xz |
Epub backend builds as a part of Atril compilation
Fixed a tabbing error in backend/Makefile.am due to which the epub backend was not a target when building recursilvely, i am not commiting the changes to
epub-document.c as currently it will break the build, hope to fix it and get webkit and mathjax done by the weekend.
Also fixed an error in configure.ac wherin the appearance of AM_LIBTOOL_PROG before AC_CXX_PROG caused a "link:unsupported hardcode properties error" on Linux Mint.
Diffstat (limited to 'backend/epub/epub-document.h')
-rw-r--r-- | backend/epub/epub-document.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/epub/epub-document.h b/backend/epub/epub-document.h index db9c99e5..c9fd760d 100644 --- a/backend/epub/epub-document.h +++ b/backend/epub/epub-document.h @@ -6,10 +6,10 @@ G_BEGIN_DECLS #define EPUB_TYPE_DOCUMENT (epub_document_get_type ()) -#define EPUB_DOCUMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPUB_TYPE_DOCUMENT, ePubDocument)) +#define EPUB_DOCUMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPUB_TYPE_DOCUMENT, EpubDocument)) #define EPUB_IS_DOCUMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EPUB_TYPE_DOCUMENT)) -typedef struct _ePubDocument ePubDocument; +typedef struct _EpubDocument EpubDocument; GType epub_document_get_type (void) G_GNUC_CONST; |