epiphany r8266 - in trunk: . embed



Author: diegoe
Date: Tue Jun  3 18:31:53 2008
New Revision: 8266
URL: http://svn.gnome.org/viewvc/epiphany?rev=8266&view=rev

Log:
Do not do single includes in embed/, bug #536090

Modified:
   trunk/   (props changed)
   trunk/embed/downloader-view.c
   trunk/embed/ephy-embed-dialog.h
   trunk/embed/ephy-embed-event.c
   trunk/embed/ephy-embed-persist.c
   trunk/embed/ephy-embed-persist.h
   trunk/embed/ephy-embed-shell.c
   trunk/embed/ephy-embed-shell.h
   trunk/embed/ephy-embed.h
   trunk/embed/ephy-favicon-cache.c

Modified: trunk/embed/downloader-view.c
==============================================================================
--- trunk/embed/downloader-view.c	(original)
+++ trunk/embed/downloader-view.c	Tue Jun  3 18:31:53 2008
@@ -32,22 +32,7 @@
 #include "eel-gconf-extensions.h"
 
 #include <glib/gi18n.h>
-#include <gtk/gtkversion.h>
-#include <gtk/gtktreeview.h>
-#include <gtk/gtkliststore.h>
-#include <gtk/gtkbutton.h>
-#include <gtk/gtkcellrenderertext.h>
-#include <gtk/gtkcellrendererpixbuf.h>
-#include <gtk/gtkcellrendererprogress.h>
-#include <gtk/gtktreeselection.h>
-#include <gtk/gtktreeviewcolumn.h>
-#include <gtk/gtkicontheme.h>
-#include <gtk/gtkiconfactory.h>
-#include <gtk/gtkmenuitem.h>
-#include <gtk/gtkmenushell.h>
-#include <gtk/gtkmenu.h>
-#include <gtk/gtkmain.h>
-#include <gtk/gtkstatusicon.h>
+#include <gtk/gtk.h>
 #include <libgnomeui/gnome-icon-lookup.h>
 
 

Modified: trunk/embed/ephy-embed-dialog.h
==============================================================================
--- trunk/embed/ephy-embed-dialog.h	(original)
+++ trunk/embed/ephy-embed-dialog.h	Tue Jun  3 18:31:53 2008
@@ -30,7 +30,7 @@
 
 #include <glib-object.h>
 #include <glib.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/embed/ephy-embed-event.c
==============================================================================
--- trunk/embed/ephy-embed-event.c	(original)
+++ trunk/embed/ephy-embed-event.c	Tue Jun  3 18:31:53 2008
@@ -23,8 +23,8 @@
 #include "ephy-embed-event.h"
 #include "ephy-embed-type-builtins.h"
 
-#include <glib/ghash.h>
-#include <gtk/gtktypeutils.h>
+#include <glib.h>
+#include <gtk/gtk.h>
 
 static void ephy_embed_event_base_init (gpointer g_class);
 

Modified: trunk/embed/ephy-embed-persist.c
==============================================================================
--- trunk/embed/ephy-embed-persist.c	(original)
+++ trunk/embed/ephy-embed-persist.c	Tue Jun  3 18:31:53 2008
@@ -25,7 +25,7 @@
 #include "ephy-embed-type-builtins.h"
 #include "ephy-debug.h"
 
-#include <gtk/gtkmain.h>
+#include <gtk/gtk.h>
 
 enum
 {

Modified: trunk/embed/ephy-embed-persist.h
==============================================================================
--- trunk/embed/ephy-embed-persist.h	(original)
+++ trunk/embed/ephy-embed-persist.h	Tue Jun  3 18:31:53 2008
@@ -31,7 +31,7 @@
 #include <glib-object.h>
 #include <glib.h>
 
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/embed/ephy-embed-shell.c
==============================================================================
--- trunk/embed/ephy-embed-shell.c	(original)
+++ trunk/embed/ephy-embed-shell.c	Tue Jun  3 18:31:53 2008
@@ -21,10 +21,9 @@
 #include <config.h>
 
 #include <glib.h>
-#include <glib/gstdio.h>
 
 #include <glib/gi18n.h>
-#include <gtk/gtkmessagedialog.h>
+#include <gtk/gtk.h>
 
 #include "downloader-view.h"
 #include "ephy-adblock-manager.h"

Modified: trunk/embed/ephy-embed-shell.h
==============================================================================
--- trunk/embed/ephy-embed-shell.h	(original)
+++ trunk/embed/ephy-embed-shell.h	Tue Jun  3 18:31:53 2008
@@ -27,8 +27,7 @@
 
 #include <glib.h>
 #include <glib-object.h>
-#include <gtk/gtkpagesetup.h>
-#include <gtk/gtkprintsettings.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/embed/ephy-embed.h
==============================================================================
--- trunk/embed/ephy-embed.h	(original)
+++ trunk/embed/ephy-embed.h	Tue Jun  3 18:31:53 2008
@@ -30,7 +30,7 @@
 
 #include <glib-object.h>
 #include <glib.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: trunk/embed/ephy-favicon-cache.c
==============================================================================
--- trunk/embed/ephy-favicon-cache.c	(original)
+++ trunk/embed/ephy-favicon-cache.c	Tue Jun  3 18:31:53 2008
@@ -38,7 +38,7 @@
 #include "ephy-debug.h"
 #include "ephy-glib-compat.h"
 
-#include <glib/gstdio.h>
+#include <glib.h>
 #include <gio/gio.h>
 
 #define EPHY_FAVICON_CACHE_XML_ROOT    (const xmlChar *)"ephy_favicons_cache"



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