diff options
author | Michael Natterer <mitch@gimp.org> | 2008-05-28 12:49:11 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-05-28 12:49:11 +0000 |
commit | 6720ef6d809b7adec22d18ceb42c29b59e5fca3b (patch) | |
tree | 2ca66c7776b39152236920b43b802be5438d30d8 /modules | |
parent | 0130bc33fd53b1151fbe1d0174136baab048b8da (diff) | |
download | gtk+-6720ef6d809b7adec22d18ceb42c29b59e5fca3b.tar.gz |
modules/printbackends/cups/gtkcupsutils.c
2008-05-28 Michael Natterer <mitch@gimp.org>
* modules/printbackends/cups/gtkcupsutils.c
* modules/printbackends/cups/gtkprintbackendcups.c
* modules/printbackends/file/gtkprintbackendfile.c
* modules/printbackends/lpr/gtkprintbackendlpr.c: include
<gtk/gtk.h> instead of individual files.
svn path=/trunk/; revision=20210
Diffstat (limited to 'modules')
-rw-r--r-- | modules/printbackends/cups/gtkcupsutils.c | 2 | ||||
-rw-r--r-- | modules/printbackends/cups/gtkprintbackendcups.c | 4 | ||||
-rw-r--r-- | modules/printbackends/file/gtkprintbackendfile.c | 7 | ||||
-rw-r--r-- | modules/printbackends/lpr/gtkprintbackendlpr.c | 6 |
4 files changed, 7 insertions, 12 deletions
diff --git a/modules/printbackends/cups/gtkcupsutils.c b/modules/printbackends/cups/gtkcupsutils.c index da729bf3c0..06e8ca8661 100644 --- a/modules/printbackends/cups/gtkcupsutils.c +++ b/modules/printbackends/cups/gtkcupsutils.c @@ -20,8 +20,8 @@ */ #include "config.h" +#include <gtk/gtk.h> #include "gtkcupsutils.h" -#include "gtkdebug.h" #include <errno.h> #include <unistd.h> diff --git a/modules/printbackends/cups/gtkprintbackendcups.c b/modules/printbackends/cups/gtkprintbackendcups.c index 0a0c4e97b0..d061bc7cee 100644 --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -39,8 +39,7 @@ #include <glib/gi18n-lib.h> #include <gmodule.h> -#include <gtk/gtkprintoperation.h> -#include <gtk/gtkprintsettings.h> +#include <gtk/gtk.h> #include <gtk/gtkprintbackend.h> #include <gtk/gtkprinter.h> #include <gtk/gtkprinter-private.h> @@ -49,7 +48,6 @@ #include "gtkprintercups.h" #include "gtkcupsutils.h" -#include "gtkdebug.h" typedef struct _GtkPrintBackendCupsClass GtkPrintBackendCupsClass; diff --git a/modules/printbackends/file/gtkprintbackendfile.c b/modules/printbackends/file/gtkprintbackendfile.c index 58b787919c..6cd8e6e636 100644 --- a/modules/printbackends/file/gtkprintbackendfile.c +++ b/modules/printbackends/file/gtkprintbackendfile.c @@ -35,14 +35,11 @@ #include <glib/gi18n-lib.h> -#include "gtkprintoperation.h" +#include "gtk/gtk.h" +#include "gtk/gtkprinter-private.h" -#include "gtkprintbackend.h" #include "gtkprintbackendfile.h" -#include "gtkprinter.h" -#include "gtkprinter-private.h" - typedef struct _GtkPrintBackendFileClass GtkPrintBackendFileClass; #define GTK_PRINT_BACKEND_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINT_BACKEND_FILE, GtkPrintBackendFileClass)) diff --git a/modules/printbackends/lpr/gtkprintbackendlpr.c b/modules/printbackends/lpr/gtkprintbackendlpr.c index f73bf863e2..a737ba4a16 100644 --- a/modules/printbackends/lpr/gtkprintbackendlpr.c +++ b/modules/printbackends/lpr/gtkprintbackendlpr.c @@ -33,12 +33,12 @@ #include <glib/gi18n-lib.h> -#include "gtkdebug.h" -#include "gtkprintoperation.h" -#include "gtkprintbackendlpr.h" +#include <gtk/gtk.h> #include "gtkprinter.h" #include "gtkprinter-private.h" +#include "gtkprintbackendlpr.h" + typedef struct _GtkPrintBackendLprClass GtkPrintBackendLprClass; #define GTK_PRINT_BACKEND_LPR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PRINT_BACKEND_LPR, GtkPrintBackendLprClass)) |