eel r2160 - in trunk: . eel
- From: cosimoc svn gnome org
- To: svn-commits-list gnome org
- Subject: eel r2160 - in trunk: . eel
- Date: Tue, 2 Sep 2008 17:57:48 +0000 (UTC)
Author: cosimoc
Date: Tue Sep 2 17:57:48 2008
New Revision: 2160
URL: http://svn.gnome.org/viewvc/eel?rev=2160&view=rev
Log:
2008-09-02 Cosimo Cecchi <cosimoc gnome org>
* eel/*.[ch]: use single headers GTK/GDK/Pango includes.
Modified:
trunk/ChangeLog
trunk/eel/check-program.c
trunk/eel/eel-accessibility.c
trunk/eel/eel-accessibility.h
trunk/eel/eel-alert-dialog.c
trunk/eel/eel-alert-dialog.h
trunk/eel/eel-app-launch-context.c
trunk/eel/eel-app-launch-context.h
trunk/eel/eel-background-box.h
trunk/eel/eel-background.c
trunk/eel/eel-background.h
trunk/eel/eel-canvas.c
trunk/eel/eel-canvas.h
trunk/eel/eel-debug-drawing.c
trunk/eel/eel-debug.c
trunk/eel/eel-debug.h
trunk/eel/eel-editable-label.c
trunk/eel/eel-editable-label.h
trunk/eel/eel-gdk-extensions.h
trunk/eel/eel-gdk-pixbuf-extensions.h
trunk/eel/eel-gnome-extensions.c
trunk/eel/eel-gnome-extensions.h
trunk/eel/eel-gtk-container.h
trunk/eel/eel-gtk-extensions.c
trunk/eel/eel-gtk-extensions.h
trunk/eel/eel-i18n.c
trunk/eel/eel-image-table.c
trunk/eel/eel-labeled-image.c
trunk/eel/eel-labeled-image.h
trunk/eel/eel-mount-operation.c
trunk/eel/eel-mount-operation.h
trunk/eel/eel-pango-extensions.c
trunk/eel/eel-pango-extensions.h
trunk/eel/eel-preferences-glade.c
trunk/eel/eel-preferences.c
trunk/eel/eel-stock-dialogs.c
trunk/eel/eel-stock-dialogs.h
trunk/eel/eel-types.c
trunk/eel/eel-vfs-extensions.c
trunk/eel/eel-wrap-table.c
trunk/eel/eel-wrap-table.h
Modified: trunk/eel/check-program.c
==============================================================================
--- trunk/eel/check-program.c (original)
+++ trunk/eel/check-program.c Tue Sep 2 17:57:48 2008
@@ -29,7 +29,7 @@
#include <eel/eel-lib-self-check-functions.h>
#include <eel/eel-self-checks.h>
#include <gdk/gdkrgb.h>
-#include <gtk/gtkmain.h>
+#include <gtk/gtk.h>
#include <libgnomeui/gnome-ui-init.h>
#include <libxml/parser.h>
#include <stdlib.h>
Modified: trunk/eel/eel-accessibility.c
==============================================================================
--- trunk/eel/eel-accessibility.c (original)
+++ trunk/eel/eel-accessibility.c Tue Sep 2 17:57:48 2008
@@ -23,7 +23,7 @@
Michael Meeks <michael ximian com>
*/
#include <config.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
#include <atk/atkrelationset.h>
#include <eel/eel-accessibility.h>
Modified: trunk/eel/eel-accessibility.h
==============================================================================
--- trunk/eel/eel-accessibility.h (original)
+++ trunk/eel/eel-accessibility.h Tue Sep 2 17:57:48 2008
@@ -28,7 +28,7 @@
#include <atk/atkobject.h>
#include <atk/atkregistry.h>
#include <atk/atkobjectfactory.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
#include <libgail-util/gailtextutil.h>
void eel_accessibility_set_up_label_widget_relation (GtkWidget *label, GtkWidget *widget);
Modified: trunk/eel/eel-alert-dialog.c
==============================================================================
--- trunk/eel/eel-alert-dialog.c (original)
+++ trunk/eel/eel-alert-dialog.c Tue Sep 2 17:57:48 2008
@@ -23,13 +23,7 @@
#include "eel-alert-dialog.h"
#include "eel-i18n.h"
#include "eel-gtk-macros.h"
-#include <gtk/gtklabel.h>
-#include <gtk/gtkhbox.h>
-#include <gtk/gtkvbox.h>
-#include <gtk/gtkimage.h>
-#include <gtk/gtkstock.h>
-#include <gtk/gtkiconfactory.h>
-#include <gtk/gtkexpander.h>
+#include <gtk/gtk.h>
#include <string.h>
enum {
Modified: trunk/eel/eel-alert-dialog.h
==============================================================================
--- trunk/eel/eel-alert-dialog.h (original)
+++ trunk/eel/eel-alert-dialog.h Tue Sep 2 17:57:48 2008
@@ -22,7 +22,7 @@
#ifndef EEL_ALERT_DIALOG_H
#define EEL_ALERT_DIALOG_H
-#include <gtk/gtkmessagedialog.h>
+#include <gtk/gtk.h>
#define EEL_TYPE_ALERT_DIALOG (eel_alert_dialog_get_type ())
#define EEL_ALERT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EEL_TYPE_ALERT_DIALOG, EelAlertDialog))
Modified: trunk/eel/eel-app-launch-context.c
==============================================================================
--- trunk/eel/eel-app-launch-context.c (original)
+++ trunk/eel/eel-app-launch-context.c Tue Sep 2 17:57:48 2008
@@ -27,7 +27,7 @@
#include "eel-app-launch-context.h"
#include <gio/gio.h>
-#include <glib/gurifuncs.h>
+#include <glib.h>
#include <string.h>
#ifdef HAVE_STARTUP_NOTIFICATION
@@ -35,7 +35,7 @@
#include <libsn/sn.h>
#include <gdk/gdk.h>
#include <gdk/gdkx.h>
-#include <gtk/gtkmain.h>
+#include <gtk/gtk.h>
#endif
G_DEFINE_TYPE (EelAppLaunchContext, eel_app_launch_context, G_TYPE_APP_LAUNCH_CONTEXT);
Modified: trunk/eel/eel-app-launch-context.h
==============================================================================
--- trunk/eel/eel-app-launch-context.h (original)
+++ trunk/eel/eel-app-launch-context.h Tue Sep 2 17:57:48 2008
@@ -27,7 +27,7 @@
#include <glib.h>
#include <gio/gio.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
G_BEGIN_DECLS
Modified: trunk/eel/eel-background-box.h
==============================================================================
--- trunk/eel/eel-background-box.h (original)
+++ trunk/eel/eel-background-box.h Tue Sep 2 17:57:48 2008
@@ -26,7 +26,7 @@
#define EEL_BACKGROUND_BOX_H
#include <glib.h>
-#include <gtk/gtkeventbox.h>
+#include <gtk/gtk.h>
G_BEGIN_DECLS
Modified: trunk/eel/eel-background.c
==============================================================================
--- trunk/eel/eel-background.c (original)
+++ trunk/eel/eel-background.c Tue Sep 2 17:57:48 2008
@@ -35,8 +35,7 @@
#include "eel-types.h"
#include "eel-type-builtins.h"
#include <gtk/gtkprivate.h>
-#include <gtk/gtkselection.h>
-#include <gtk/gtksignal.h>
+#include <gtk/gtk.h>
#include <eel/eel-canvas.h>
#include <eel/eel-canvas-util.h>
#include <gio/gio.h>
Modified: trunk/eel/eel-background.h
==============================================================================
--- trunk/eel/eel-background.h (original)
+++ trunk/eel/eel-background.h Tue Sep 2 17:57:48 2008
@@ -40,8 +40,8 @@
modified and then set.
*/
-#include <gdk/gdktypes.h>
-#include <gtk/gtkwidget.h>
+#include <gdk/gdk.h>
+#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
Modified: trunk/eel/eel-canvas.c
==============================================================================
--- trunk/eel/eel-canvas.c (original)
+++ trunk/eel/eel-canvas.c Tue Sep 2 17:57:48 2008
@@ -67,10 +67,7 @@
#include <string.h>
#include <stdio.h>
#include <gdk/gdkprivate.h>
-#include <gtk/gtkmain.h>
-#include <gtk/gtksignal.h>
-#include <gtk/gtkaccessible.h>
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
#include "eel-canvas.h"
#include "eel-i18n.h"
Modified: trunk/eel/eel-canvas.h
==============================================================================
--- trunk/eel/eel-canvas.h (original)
+++ trunk/eel/eel-canvas.h Tue Sep 2 17:57:48 2008
@@ -37,8 +37,8 @@
#ifndef EEL_CANVAS_H
#define EEL_CANVAS_H
-#include <gtk/gtklayout.h>
-#include <gdk/gdkevents.h>
+#include <gtk/gtk.h>
+#include <gdk/gdk.h>
#include <stdarg.h>
G_BEGIN_DECLS
Modified: trunk/eel/eel-debug-drawing.c
==============================================================================
--- trunk/eel/eel-debug-drawing.c (original)
+++ trunk/eel/eel-debug-drawing.c Tue Sep 2 17:57:48 2008
@@ -34,9 +34,7 @@
#include "eel-gtk-extensions.h"
#include "eel-gtk-macros.h"
-#include <gtk/gtkwindow.h>
-#include <gtk/gtkvbox.h>
-#include <gtk/gtksignal.h>
+#include <gtk/gtk.h>
#include <stdlib.h>
#include <unistd.h>
Modified: trunk/eel/eel-debug.c
==============================================================================
--- trunk/eel/eel-debug.c (original)
+++ trunk/eel/eel-debug.c Tue Sep 2 17:57:48 2008
@@ -25,8 +25,7 @@
#include <config.h>
#include "eel-debug.h"
-#include <glib/glist.h>
-#include <glib/gmessages.h>
+#include <glib.h>
#include <signal.h>
#include <stdio.h>
Modified: trunk/eel/eel-debug.h
==============================================================================
--- trunk/eel/eel-debug.h (original)
+++ trunk/eel/eel-debug.h Tue Sep 2 17:57:48 2008
@@ -25,7 +25,7 @@
#ifndef EEL_DEBUG_H
#define EEL_DEBUG_H
-#include <glib/gtypes.h>
+#include <glib.h>
G_BEGIN_DECLS
Modified: trunk/eel/eel-editable-label.c
==============================================================================
--- trunk/eel/eel-editable-label.c (original)
+++ trunk/eel/eel-editable-label.c Tue Sep 2 17:57:48 2008
@@ -33,22 +33,9 @@
#include "eel-accessibility.h"
#include <libgail-util/gailmisc.h>
-#include <gtk/gtkmain.h>
-#include <gtk/gtksignal.h>
-#include <gtk/gtkeditable.h>
-#include <gtk/gtkwindow.h>
-#include <gdk/gdkkeysyms.h>
-#include <gtk/gtkclipboard.h>
-#include <gtk/gtkimmulticontext.h>
#include <pango/pango.h>
-#include <gtk/gtkimagemenuitem.h>
-#include <gtk/gtkseparatormenuitem.h>
-#include <gtk/gtkmenuitem.h>
-#include <gtk/gtknotebook.h>
-#include <gtk/gtkstock.h>
-#include <gtk/gtkbindings.h>
-#include <gtk/gtkaccessible.h>
-#include <gtk/gtkgc.h>
+#include <gtk/gtk.h>
+#include <gdk/gdkkeysyms.h>
enum {
MOVE_CURSOR,
Modified: trunk/eel/eel-editable-label.h
==============================================================================
--- trunk/eel/eel-editable-label.h (original)
+++ trunk/eel/eel-editable-label.h Tue Sep 2 17:57:48 2008
@@ -28,10 +28,7 @@
#include <gdk/gdk.h>
-#include <gtk/gtkmisc.h>
-#include <gtk/gtkwindow.h>
-#include <gtk/gtkimcontext.h>
-#include <gtk/gtkmenu.h>
+#include <gtk/gtk.h>
#ifdef __cplusplus
extern "C" {
Modified: trunk/eel/eel-gdk-extensions.h
==============================================================================
--- trunk/eel/eel-gdk-extensions.h (original)
+++ trunk/eel/eel-gdk-extensions.h Tue Sep 2 17:57:48 2008
@@ -26,8 +26,7 @@
#ifndef EEL_GDK_EXTENSIONS_H
#define EEL_GDK_EXTENSIONS_H
-#include <gdk/gdktypes.h>
-#include <gdk/gdkwindow.h>
+#include <gdk/gdk.h>
#define EEL_RGB_COLOR_RED 0xFF0000
#define EEL_RGB_COLOR_GREEN 0x00FF00
Modified: trunk/eel/eel-gdk-pixbuf-extensions.h
==============================================================================
--- trunk/eel/eel-gdk-pixbuf-extensions.h (original)
+++ trunk/eel/eel-gdk-pixbuf-extensions.h Tue Sep 2 17:57:48 2008
@@ -28,8 +28,7 @@
#include <eel/eel-art-extensions.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
-#include <gdk/gdkdrawable.h>
-#include <gdk/gdkrgb.h>
+#include <gdk/gdk.h>
#include <gio/gio.h>
#define EEL_STANDARD_ALPHA_THRESHHOLD 128
Modified: trunk/eel/eel-gnome-extensions.c
==============================================================================
--- trunk/eel/eel-gnome-extensions.c (original)
+++ trunk/eel/eel-gnome-extensions.c Tue Sep 2 17:57:48 2008
@@ -37,7 +37,7 @@
#include <errno.h>
#include <fcntl.h>
#include <gdk/gdkx.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
#include <libgnome/gnome-exec.h>
#include <libgnome/gnome-util.h>
#include <libgnomeui/gnome-file-entry.h>
Modified: trunk/eel/eel-gnome-extensions.h
==============================================================================
--- trunk/eel/eel-gnome-extensions.h (original)
+++ trunk/eel/eel-gnome-extensions.h Tue Sep 2 17:57:48 2008
@@ -28,7 +28,7 @@
#define EEL_GNOME_EXTENSIONS_H
#include <glade/glade.h>
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
#include <bonobo/bonobo-property-bag-client.h>
/* icon selection callback function. */
Modified: trunk/eel/eel-gtk-container.h
==============================================================================
--- trunk/eel/eel-gtk-container.h (original)
+++ trunk/eel/eel-gtk-container.h Tue Sep 2 17:57:48 2008
@@ -26,7 +26,7 @@
#ifndef EEL_GTK_CONTAINER_H
#define EEL_GTK_CONTAINER_H
-#include <gtk/gtkcontainer.h>
+#include <gtk/gtk.h>
#include <eel/eel-art-extensions.h>
void eel_gtk_container_child_expose_event (GtkContainer *container,
Modified: trunk/eel/eel-gtk-extensions.c
==============================================================================
--- trunk/eel/eel-gtk-extensions.c (original)
+++ trunk/eel/eel-gtk-extensions.c Tue Sep 2 17:57:48 2008
@@ -37,21 +37,10 @@
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <gdk/gdk.h>
-#include <gdk/gdkkeysyms.h>
#include <gdk/gdkprivate.h>
#include <gdk/gdkx.h>
-#include <gtk/gtkalignment.h>
-#include <gtk/gtkdialog.h>
-#include <gtk/gtkdnd.h>
-#include <gtk/gtkhbox.h>
-#include <gtk/gtkimage.h>
-#include <gtk/gtkmain.h>
-#include <gtk/gtkrc.h>
-#include <gtk/gtkselection.h>
-#include <gtk/gtkseparatormenuitem.h>
-#include <gtk/gtksignal.h>
+#include <gtk/gtk.h>
#include <math.h>
-
#include "eel-marshal.h"
#include "eel-marshal.c"
Modified: trunk/eel/eel-gtk-extensions.h
==============================================================================
--- trunk/eel/eel-gtk-extensions.h (original)
+++ trunk/eel/eel-gtk-extensions.h Tue Sep 2 17:57:48 2008
@@ -29,13 +29,7 @@
#define EEL_GTK_EXTENSIONS_H
#include <gdk-pixbuf/gdk-pixbuf.h>
-#include <gtk/gtkbutton.h>
-#include <gtk/gtklabel.h>
-#include <gtk/gtkmenu.h>
-#include <gtk/gtkmenuitem.h>
-#include <gtk/gtktreeview.h>
-#include <gtk/gtkwindow.h>
-#include <gtk/gtkviewport.h>
+#include <gtk/gtk.h>
#include <eel/eel-gdk-extensions.h>
#define EEL_DEFAULT_POPUP_MENU_DISPLACEMENT 2
Modified: trunk/eel/eel-i18n.c
==============================================================================
--- trunk/eel/eel-i18n.c (original)
+++ trunk/eel/eel-i18n.c Tue Sep 2 17:57:48 2008
@@ -23,7 +23,7 @@
*/
#include <config.h>
-#include <glib/gmacros.h>
+#include <glib.h>
#include "eel-i18n.h"
#ifdef ENABLE_NLS
Modified: trunk/eel/eel-image-table.c
==============================================================================
--- trunk/eel/eel-image-table.c (original)
+++ trunk/eel/eel-image-table.c Tue Sep 2 17:57:48 2008
@@ -32,8 +32,7 @@
#include "eel-gtk-macros.h"
#include "eel-labeled-image.h"
#include "eel-marshal.h"
-#include <gtk/gtkmain.h>
-#include <gtk/gtksignal.h>
+#include <gtk/gtk.h>
/* Arguments */
enum
Modified: trunk/eel/eel-labeled-image.c
==============================================================================
--- trunk/eel/eel-labeled-image.c (original)
+++ trunk/eel/eel-labeled-image.c Tue Sep 2 17:57:48 2008
@@ -32,13 +32,7 @@
#include "eel-gtk-extensions.h"
#include "eel-gtk-macros.h"
#include "eel-accessibility.h"
-#include <gtk/gtkbutton.h>
-#include <gtk/gtkcheckbutton.h>
-#include <gtk/gtkimage.h>
-#include <gtk/gtksignal.h>
-#include <gtk/gtktogglebutton.h>
-#include <gtk/gtkbindings.h>
-#include <gtk/gtkaccessible.h>
+#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include <atk/atkimage.h>
Modified: trunk/eel/eel-labeled-image.h
==============================================================================
--- trunk/eel/eel-labeled-image.h (original)
+++ trunk/eel/eel-labeled-image.h Tue Sep 2 17:57:48 2008
@@ -47,7 +47,7 @@
#define EEL_LABELED_IMAGE_H
#include <gdk-pixbuf/gdk-pixbuf.h>
-#include <gtk/gtkcontainer.h>
+#include <gtk/gtk.h>
#include <eel/eel-art-extensions.h>
G_BEGIN_DECLS
Modified: trunk/eel/eel-mount-operation.c
==============================================================================
--- trunk/eel/eel-mount-operation.c (original)
+++ trunk/eel/eel-mount-operation.c Tue Sep 2 17:57:48 2008
@@ -26,7 +26,7 @@
#include "eel-i18n.h"
#include "eel-mount-operation.h"
#include <libgnomeui/gnome-password-dialog.h>
-#include <gtk/gtkmessagedialog.h>
+#include <gtk/gtk.h>
#include <string.h>
#define I_(string) g_intern_static_string (string)
Modified: trunk/eel/eel-mount-operation.h
==============================================================================
--- trunk/eel/eel-mount-operation.h (original)
+++ trunk/eel/eel-mount-operation.h Tue Sep 2 17:57:48 2008
@@ -27,7 +27,7 @@
#include <glib.h>
#include <gio/gio.h>
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
G_BEGIN_DECLS
Modified: trunk/eel/eel-pango-extensions.c
==============================================================================
--- trunk/eel/eel-pango-extensions.c (original)
+++ trunk/eel/eel-pango-extensions.c Tue Sep 2 17:57:48 2008
@@ -31,10 +31,8 @@
#include "eel-lib-self-check-functions.h"
#endif
-#include <gtk/gtkmain.h>
-#include <pango/pango-attributes.h>
-#include <pango/pango-break.h>
-#include <pango/pango-context.h>
+#include <gtk/gtk.h>
+#include <pango/pango.h>
#include <string.h>
PangoAttrList *
Modified: trunk/eel/eel-pango-extensions.h
==============================================================================
--- trunk/eel/eel-pango-extensions.h (original)
+++ trunk/eel/eel-pango-extensions.h Tue Sep 2 17:57:48 2008
@@ -27,7 +27,7 @@
#ifndef EEL_PANGO_EXTENSIONS_H
#define EEL_PANGO_EXTENSIONS_H
-#include <pango/pango-layout.h>
+#include <pango/pango.h>
typedef enum {
EEL_ELLIPSIZE_START,
Modified: trunk/eel/eel-preferences-glade.c
==============================================================================
--- trunk/eel/eel-preferences-glade.c (original)
+++ trunk/eel/eel-preferences-glade.c Tue Sep 2 17:57:48 2008
@@ -25,8 +25,7 @@
#include "eel-preferences-glade.h"
#include <glib.h>
-#include <gtk/gtkcombobox.h>
-#include <gtk/gtktogglebutton.h>
+#include <gtk/gtk.h>
#include "eel-preferences.h"
Modified: trunk/eel/eel-preferences.c
==============================================================================
--- trunk/eel/eel-preferences.c (original)
+++ trunk/eel/eel-preferences.c Tue Sep 2 17:57:48 2008
@@ -33,7 +33,7 @@
#include "eel-string.h"
#include <gconf/gconf-client.h>
#include <gconf/gconf.h>
-#include <gtk/gtksignal.h>
+#include <gtk/gtk.h>
/* An enumeration used for updating auto-storage variables in a type-specific way.
* FIXME: there is another enumeration like this in eel-global-preferences.c,
Modified: trunk/eel/eel-stock-dialogs.c
==============================================================================
--- trunk/eel/eel-stock-dialogs.c (original)
+++ trunk/eel/eel-stock-dialogs.c Tue Sep 2 17:57:48 2008
@@ -30,12 +30,7 @@
#include "eel-gnome-extensions.h"
#include "eel-string.h"
#include "eel-i18n.h"
-#include <gtk/gtkbox.h>
-#include <gtk/gtklabel.h>
-#include <gtk/gtkmain.h>
-#include <gtk/gtkmessagedialog.h>
-#include <gtk/gtksignal.h>
-#include <gtk/gtkstock.h>
+#include <gtk/gtk.h>
#include <libgnomeui/gnome-uidefs.h>
#include <libgnomeui/gnome-authentication-manager.h>
Modified: trunk/eel/eel-stock-dialogs.h
==============================================================================
--- trunk/eel/eel-stock-dialogs.h (original)
+++ trunk/eel/eel-stock-dialogs.h Tue Sep 2 17:57:48 2008
@@ -25,8 +25,7 @@
#ifndef EEL_STOCK_DIALOGS_H
#define EEL_STOCK_DIALOGS_H
-#include <gtk/gtkdialog.h>
-#include <gtk/gtkmessagedialog.h>
+#include <gtk/gtk.h>
typedef void (* EelCancelCallback) (gpointer callback_data);
Modified: trunk/eel/eel-types.c
==============================================================================
--- trunk/eel/eel-types.c (original)
+++ trunk/eel/eel-types.c Tue Sep 2 17:57:48 2008
@@ -23,7 +23,7 @@
#include <config.h>
-#include <gtk/gtktypeutils.h>
+#include <gtk/gtk.h>
#define EEL_COMPILATION 1
#include <eel/eel.h>
Modified: trunk/eel/eel-vfs-extensions.c
==============================================================================
--- trunk/eel/eel-vfs-extensions.c (original)
+++ trunk/eel/eel-vfs-extensions.c Tue Sep 2 17:57:48 2008
@@ -31,7 +31,7 @@
#include "eel-vfs-extensions.h"
#include "eel-glib-extensions.h"
#include "eel-lib-self-check-functions.h"
-#include <glib/gurifuncs.h>
+#include <glib.h>
#include <gio/gio.h>
#include "eel-string.h"
Modified: trunk/eel/eel-wrap-table.c
==============================================================================
--- trunk/eel/eel-wrap-table.c (original)
+++ trunk/eel/eel-wrap-table.c Tue Sep 2 17:57:48 2008
@@ -30,9 +30,7 @@
#include "eel-gtk-extensions.h"
#include "eel-gtk-macros.h"
#include "eel-types.h"
-#include <gtk/gtkmain.h>
-#include <gtk/gtkviewport.h>
-#include <gtk/gtkscrolledwindow.h>
+#include <gtk/gtk.h>
/* Arguments */
enum
Modified: trunk/eel/eel-wrap-table.h
==============================================================================
--- trunk/eel/eel-wrap-table.h (original)
+++ trunk/eel/eel-wrap-table.h Tue Sep 2 17:57:48 2008
@@ -26,7 +26,7 @@
#define EEL_WRAP_TABLE_H
#include <glib.h>
-#include <gtk/gtkcontainer.h>
+#include <gtk/gtk.h>
G_BEGIN_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]