Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libdocument
diff options
context:
space:
mode:
Diffstat (limited to 'libdocument')
-rw-r--r--libdocument/ev-document-factory.c1
-rw-r--r--libdocument/ev-document-factory.h1
-rw-r--r--libdocument/ev-document-links.h1
-rw-r--r--libdocument/ev-document-misc.c5
-rw-r--r--libdocument/ev-document-misc.h3
5 files changed, 7 insertions, 4 deletions
diff --git a/libdocument/ev-document-factory.c b/libdocument/ev-document-factory.c
index e7c76b9..a920be6 100644
--- a/libdocument/ev-document-factory.c
+++ b/libdocument/ev-document-factory.c
@@ -23,6 +23,7 @@
#endif
#include <string.h>
+
#include <gio/gio.h>
#include <glib/gstdio.h>
#include <glib/gi18n.h>
diff --git a/libdocument/ev-document-factory.h b/libdocument/ev-document-factory.h
index 55c59e4..82e47a2 100644
--- a/libdocument/ev-document-factory.h
+++ b/libdocument/ev-document-factory.h
@@ -22,6 +22,7 @@
#define EV_DOCUMENT_FACTORY_H
#include <gtk/gtk.h>
+
#include "ev-document.h"
G_BEGIN_DECLS
diff --git a/libdocument/ev-document-links.h b/libdocument/ev-document-links.h
index a9208f4..f6a6a48 100644
--- a/libdocument/ev-document-links.h
+++ b/libdocument/ev-document-links.h
@@ -33,7 +33,6 @@
G_BEGIN_DECLS
-
#define EV_TYPE_DOCUMENT_LINKS (ev_document_links_get_type ())
#define EV_DOCUMENT_LINKS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinks))
#define EV_DOCUMENT_LINKS_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinksIface))
diff --git a/libdocument/ev-document-misc.c b/libdocument/ev-document-misc.c
index 7898a8c..889e4a8 100644
--- a/libdocument/ev-document-misc.c
+++ b/libdocument/ev-document-misc.c
@@ -18,10 +18,13 @@
*/
#include <config.h>
-#include "ev-document-misc.h"
+
#include <string.h>
+
#include <gtk/gtk.h>
+#include "ev-document-misc.h"
+
/* Returns a new GdkPixbuf that is suitable for placing in the thumbnail view.
* It is four pixels wider and taller than the source. If source_pixbuf is not
* NULL, then it will fill the return pixbuf with the contents of
diff --git a/libdocument/ev-document-misc.h b/libdocument/ev-document-misc.h
index b58af18..5fdb670 100644
--- a/libdocument/ev-document-misc.h
+++ b/libdocument/ev-document-misc.h
@@ -22,14 +22,13 @@
#ifndef EV_DOCUMENT_MISC_H
#define EV_DOCUMENT_MISC_H
+#include <cairo.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtkstyle.h>
-#include <cairo.h>
G_BEGIN_DECLS
-
GdkPixbuf *ev_document_misc_get_thumbnail_frame (int width,
int height,
GdkPixbuf *source_pixbuf);