epiphany r8353 - branches/gnome-2-24/lib



Author: diegoe
Date: Tue Jul 22 03:34:12 2008
New Revision: 8353
URL: http://svn.gnome.org/viewvc/epiphany?rev=8353&view=rev

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



Modified:
   branches/gnome-2-24/lib/ephy-debug.c
   branches/gnome-2-24/lib/ephy-dialog.c
   branches/gnome-2-24/lib/ephy-dialog.h
   branches/gnome-2-24/lib/ephy-dnd.c
   branches/gnome-2-24/lib/ephy-dnd.h
   branches/gnome-2-24/lib/ephy-file-chooser.c
   branches/gnome-2-24/lib/ephy-file-chooser.h
   branches/gnome-2-24/lib/ephy-file-helpers.c
   branches/gnome-2-24/lib/ephy-file-helpers.h
   branches/gnome-2-24/lib/ephy-gui.c
   branches/gnome-2-24/lib/ephy-gui.h
   branches/gnome-2-24/lib/ephy-password-dialog.h
   branches/gnome-2-24/lib/ephy-print-utils.c
   branches/gnome-2-24/lib/ephy-print-utils.h
   branches/gnome-2-24/lib/ephy-state.c
   branches/gnome-2-24/lib/ephy-state.h

Modified: branches/gnome-2-24/lib/ephy-debug.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-debug.c	(original)
+++ branches/gnome-2-24/lib/ephy-debug.c	Tue Jul 22 03:34:12 2008
@@ -29,7 +29,7 @@
 #include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <glib/gbacktrace.h>
+#include <glib.h>
 
 static const char *ephy_debug_break = NULL;
 

Modified: branches/gnome-2-24/lib/ephy-dialog.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-dialog.c	(original)
+++ branches/gnome-2-24/lib/ephy-dialog.c	Tue Jul 22 03:34:12 2008
@@ -29,15 +29,8 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include <gtk/gtktogglebutton.h>
-#include <gtk/gtkradiobutton.h>
-#include <gtk/gtkcombobox.h>
-#include <gtk/gtkspinbutton.h>
-#include <gtk/gtkeditable.h>
-#include <gtk/gtkentry.h>
-#include <gtk/gtksizegroup.h>
-#include <gtk/gtkdialog.h>
-#include <glade/glade-xml.h>
+#include <gtk/gtk.h>
+#include <glade/glade.h>
 
 enum
 {

Modified: branches/gnome-2-24/lib/ephy-dialog.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-dialog.h	(original)
+++ branches/gnome-2-24/lib/ephy-dialog.h	Tue Jul 22 03:34:12 2008
@@ -24,7 +24,7 @@
 
 #include <glib-object.h>
 #include <glib.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: branches/gnome-2-24/lib/ephy-dnd.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-dnd.c	(original)
+++ branches/gnome-2-24/lib/ephy-dnd.c	Tue Jul 22 03:34:12 2008
@@ -23,8 +23,7 @@
 #include "ephy-dnd.h"
 #include "ephy-node.h"
 
-#include <gtk/gtkselection.h>
-#include <gtk/gtktreeview.h>
+#include <gtk/gtk.h>
 #include <string.h>
 
 /* Encode a "_NETSCAPE_URL_" selection.

Modified: branches/gnome-2-24/lib/ephy-dnd.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-dnd.h	(original)
+++ branches/gnome-2-24/lib/ephy-dnd.h	Tue Jul 22 03:34:12 2008
@@ -22,8 +22,7 @@
 #define EPHY_DND_H
 
 #include <glib.h>
-#include <gtk/gtkwidget.h>
-#include <gtk/gtkdnd.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: branches/gnome-2-24/lib/ephy-file-chooser.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-file-chooser.c	(original)
+++ branches/gnome-2-24/lib/ephy-file-chooser.c	Tue Jul 22 03:34:12 2008
@@ -30,8 +30,7 @@
 #include "ephy-stock-icons.h"
 #include "ephy-string.h"
 
-#include <gtk/gtkstock.h>
-#include <gtk/gtkimage.h>
+#include <gtk/gtk.h>
 #include <glib/gi18n.h>
 
 #define EPHY_FILE_CHOOSER_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_FILE_CHOOSER, EphyFileChooserPrivate))

Modified: branches/gnome-2-24/lib/ephy-file-chooser.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-file-chooser.h	(original)
+++ branches/gnome-2-24/lib/ephy-file-chooser.h	Tue Jul 22 03:34:12 2008
@@ -23,9 +23,7 @@
 
 #include <glib-object.h>
 
-#include <gtk/gtkwidget.h>
-#include <gtk/gtkfilefilter.h>
-#include <gtk/gtkfilechooserdialog.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: branches/gnome-2-24/lib/ephy-file-helpers.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-file-helpers.c	(original)
+++ branches/gnome-2-24/lib/ephy-file-helpers.c	Tue Jul 22 03:34:12 2008
@@ -43,7 +43,7 @@
 #include <libgnome/gnome-desktop-item.h>
 
 #include <gdk/gdk.h>
-#include <gtk/gtkrecentmanager.h>
+#include <gtk/gtk.h>
 
 #include <string.h>
 #include <stdlib.h>

Modified: branches/gnome-2-24/lib/ephy-file-helpers.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-file-helpers.h	(original)
+++ branches/gnome-2-24/lib/ephy-file-helpers.h	Tue Jul 22 03:34:12 2008
@@ -25,7 +25,7 @@
 
 #include <glib.h>
 #include <gio/gio.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
 
 extern GQuark ephy_file_helpers_error_quark;
 #define EPHY_FILE_HELPERS_ERROR_QUARK	(ephy_file_helpers_error_quark)

Modified: branches/gnome-2-24/lib/ephy-gui.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-gui.c	(original)
+++ branches/gnome-2-24/lib/ephy-gui.c	Tue Jul 22 03:34:12 2008
@@ -28,18 +28,9 @@
 #include <ctype.h>
 #include <string.h>
 #include <glib/gi18n.h>
-#include <gdk/gdkx.h>
+#include <gdk/gdk.h>
+#include <gtk/gtk.h>
 #include <libgnome/gnome-help.h>
-#include <gtk/gtktreemodel.h>
-#include <gtk/gtkmessagedialog.h>
-#include <gtk/gtkhbox.h>
-#include <gtk/gtkimage.h>
-#include <gtk/gtklabel.h>
-#include <gtk/gtkstock.h>
-#include <gtk/gtkmain.h>
-#include <gtk/gtktreeselection.h>
-#include <gtk/gtktoolbar.h>
-#include <gtk/gtktogglebutton.h>
 
 #include <unistd.h>
 

Modified: branches/gnome-2-24/lib/ephy-gui.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-gui.h	(original)
+++ branches/gnome-2-24/lib/ephy-gui.h	Tue Jul 22 03:34:12 2008
@@ -23,11 +23,7 @@
 
 #include <gdk/gdkkeysyms.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>
-#include <gtk/gtkmenu.h>
-#include <gtk/gtkmessagedialog.h>
-#include <gtk/gtktreeviewcolumn.h>
-#include <gtk/gtktreeview.h>
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: branches/gnome-2-24/lib/ephy-password-dialog.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-password-dialog.h	(original)
+++ branches/gnome-2-24/lib/ephy-password-dialog.h	Tue Jul 22 03:34:12 2008
@@ -21,7 +21,7 @@
 #ifndef EPHY_PASSWORD_DIALOG_H
 #define EPHY_PASSWORD_DIALOG_H
 
-#include <gtk/gtkmessagedialog.h>
+#include <gtk/gtk.h>
 #include <libgnomeui/gnome-password-dialog.h>
 
 G_BEGIN_DECLS

Modified: branches/gnome-2-24/lib/ephy-print-utils.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-print-utils.c	(original)
+++ branches/gnome-2-24/lib/ephy-print-utils.c	Tue Jul 22 03:34:12 2008
@@ -23,7 +23,7 @@
 #include <string.h>
 
 #include <glib.h>
-#include <gtk/gtktypebuiltins.h>
+#include <gtk/gtk.h>
 
 #include "ephy-debug.h"
 #include "ephy-string.h"

Modified: branches/gnome-2-24/lib/ephy-print-utils.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-print-utils.h	(original)
+++ branches/gnome-2-24/lib/ephy-print-utils.h	Tue Jul 22 03:34:12 2008
@@ -22,8 +22,7 @@
 #define EPHY_PRINT_UTILS_H
 
 #include <glib.h>
-#include <gtk/gtkprintsettings.h>
-#include <gtk/gtkpagesetup.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 

Modified: branches/gnome-2-24/lib/ephy-state.c
==============================================================================
--- branches/gnome-2-24/lib/ephy-state.c	(original)
+++ branches/gnome-2-24/lib/ephy-state.c	Tue Jul 22 03:34:12 2008
@@ -30,10 +30,7 @@
 #include "ephy-node-common.h"
 
 #include <string.h>
-#include <gtk/gtkwindow.h>
-#include <gtk/gtkpaned.h>
-#include <gtk/gtkexpander.h>
-#include <gtk/gtktogglebutton.h>
+#include <gtk/gtk.h>
 
 #define EPHY_STATES_XML_FILE	"states.xml"
 #define EPHY_STATES_XML_ROOT    (const xmlChar *)"ephy_states"

Modified: branches/gnome-2-24/lib/ephy-state.h
==============================================================================
--- branches/gnome-2-24/lib/ephy-state.h	(original)
+++ branches/gnome-2-24/lib/ephy-state.h	Tue Jul 22 03:34:12 2008
@@ -23,7 +23,7 @@
 #ifndef EPHY_STATE_H
 #define EPHY_STATE_H
 
-#include "gtk/gtkwidget.h"
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 



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