[gimp] plug-ins: clean up includes in file-pdf-save.c



commit 6130f6b0bb1672f7911b0bf2eb02f076e7881a75
Author: Michael Natterer <mitch gimp org>
Date:   Sat Aug 28 12:44:30 2010 +0200

    plug-ins: clean up includes in file-pdf-save.c

 plug-ins/common/file-pdf-save.c |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/common/file-pdf-save.c b/plug-ins/common/file-pdf-save.c
index 7c884cc..59cbf4d 100755
--- a/plug-ins/common/file-pdf-save.c
+++ b/plug-ins/common/file-pdf-save.c
@@ -100,15 +100,15 @@
  *   Also merged the header and c file into one file, Updated some of the comments
  *   and documentation, and moved this into the main source repository.
  */
-#include <libgimp/gimp.h>
-#include <libgimp/gimpui.h>
 
-#include <gtk/gtk.h>
+#include "config.h"
 
-#include <cairo.h>
 #include <cairo-pdf.h>
 #include <pango/pangocairo.h>
-#include <pango/pango.h>
+
+#include <libgimp/gimp.h>
+#include <libgimp/gimpui.h>
+
 
 #define SAVE_PROC               "file-pdf-save"
 #define SAVE_DEFAULTS_PROC      "file-pdf-save-defaults"
@@ -127,6 +127,7 @@
 
 #define PDF_DEBUG                FALSE
 
+
 typedef struct {
   gboolean convert;
   gboolean ignore;
@@ -157,6 +158,7 @@ typedef struct {
   gchar* image_name;
 } Page;
 
+
 static void               init_vals                  (const gchar *name,
                                                       gint nparams,
                                                       const GimpParam *param,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]