pygtk r3077 - in trunk: . gtk



Author: gianmt
Date: Fri Jan 30 21:58:32 2009
New Revision: 3077
URL: http://svn.gnome.org/viewvc/pygtk?rev=3077&view=rev

Log:
Clean up GLib and GTK+ includes (GNOME Goal), patch by PrzemysÅaw Grzegorczyk, fixes #563717

Modified:
   trunk/ChangeLog
   trunk/gtk/gtk.override
   trunk/gtk/gtkunixprint.override
   trunk/gtk/gtkunixprintmodule.c
   trunk/gtk/pygtkcellrenderer.h
   trunk/gtk/pygtktreemodel.h

Modified: trunk/gtk/gtk.override
==============================================================================
--- trunk/gtk/gtk.override	(original)
+++ trunk/gtk/gtk.override	Fri Jan 30 21:58:32 2009
@@ -27,7 +27,6 @@
 #include <locale.h>
 
 #include <gtk/gtk.h>
-#include <gtk/gtktreeitem.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>
 #include <gdk-pixbuf/gdk-pixdata.h>
 

Modified: trunk/gtk/gtkunixprint.override
==============================================================================
--- trunk/gtk/gtkunixprint.override	(original)
+++ trunk/gtk/gtkunixprint.override	Fri Jan 30 21:58:32 2009
@@ -31,10 +31,7 @@
 #include <glib-object.h>
 #include "pygtk-private.h"
 #include <gtk/gtk.h>
-#include <gtk/gtkprinter.h>
-#include <gtk/gtkprintjob.h>
-#include <gtk/gtkpagesetupunixdialog.h>
-#include <gtk/gtkprintunixdialog.h>
+#include <gtk/gtkunixprint.h>
 
 #include <pycairo.h>
 extern Pycairo_CAPI_t *Pycairo_CAPI;

Modified: trunk/gtk/gtkunixprintmodule.c
==============================================================================
--- trunk/gtk/gtkunixprintmodule.c	(original)
+++ trunk/gtk/gtkunixprintmodule.c	Fri Jan 30 21:58:32 2009
@@ -27,10 +27,7 @@
 #include <pygobject.h>
 #include <pygtk.h>
 #include <gtk/gtk.h>
-#include <gtk/gtkprinter.h>
-#include <gtk/gtkprintjob.h>
-#include <gtk/gtkpagesetupunixdialog.h>
-#include <gtk/gtkprintunixdialog.h>
+#include <gtk/gtkunixprint.h>
 
 # include <pycairo.h>
 Pycairo_CAPI_t *Pycairo_CAPI;

Modified: trunk/gtk/pygtkcellrenderer.h
==============================================================================
--- trunk/gtk/pygtkcellrenderer.h	(original)
+++ trunk/gtk/pygtkcellrenderer.h	Fri Jan 30 21:58:32 2009
@@ -20,7 +20,7 @@
  * USA
  */
 
-#include <gtk/gtkcellrenderer.h>
+#include <gtk/gtk.h>
 
 #define PYGTK_TYPE_GENERIC_CELL_RENDERER            (pygtk_generic_cell_renderer_get_type())
 #define PYGTK_GENERIC_CELL_RENDERER(object)         (G_TYPE_CHECK_INSTANCE_CAST((object), PYGTK_TYPE_GENERIC_CELL_RENDERER, PyGtkGenericCellRenderer))

Modified: trunk/gtk/pygtktreemodel.h
==============================================================================
--- trunk/gtk/pygtktreemodel.h	(original)
+++ trunk/gtk/pygtktreemodel.h	Fri Jan 30 21:58:32 2009
@@ -22,7 +22,7 @@
 
 #include <Python.h>
 
-#include <gtk/gtktreemodel.h>
+#include <gtk/gtk.h>
 
 #define PYGTK_TYPE_GENERIC_TREE_MODEL            (pygtk_generic_tree_model_get_type())
 #define PYGTK_GENERIC_TREE_MODEL(object)         (G_TYPE_CHECK_INSTANCE_CAST((object), PYGTK_TYPE_GENERIC_TREE_MODEL, PyGtkGenericTreeModel))



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