diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/ephy-file-helpers.c | 2 | ||||
-rw-r--r-- | lib/ephy-file-helpers.h | 1 | ||||
-rw-r--r-- | lib/ephy-glade.c | 1 | ||||
-rw-r--r-- | lib/ephy-glade.h | 4 |
5 files changed, 10 insertions, 5 deletions
@@ -1,5 +1,12 @@ 2004-02-21 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-file-helpers.h: + * lib/ephy-glade.c: + + Removed an unused #include. + +2004-02-21 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-dialog.c: (connect_signals): Always connect signals, not just for PT_AUTOAPPLY props. diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index dd69fdb60..543559acd 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -19,7 +19,7 @@ */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #include <string.h> diff --git a/lib/ephy-file-helpers.h b/lib/ephy-file-helpers.h index 63ab458de..d399b4a5a 100644 --- a/lib/ephy-file-helpers.h +++ b/lib/ephy-file-helpers.h @@ -22,7 +22,6 @@ #define EPHY_FILE_HELPERS_H #include <glib.h> -#include <libxml/tree.h> G_BEGIN_DECLS diff --git a/lib/ephy-glade.c b/lib/ephy-glade.c index 39487d744..75c197b47 100644 --- a/lib/ephy-glade.c +++ b/lib/ephy-glade.c @@ -19,7 +19,6 @@ */ #include "ephy-glade.h" -#include "ephy-file-helpers.h" #include <glade/glade-xml.h> #include <gtk/gtkmenu.h> diff --git a/lib/ephy-glade.h b/lib/ephy-glade.h index 0295fd00a..324fe315e 100644 --- a/lib/ephy-glade.h +++ b/lib/ephy-glade.h @@ -25,14 +25,14 @@ #include <gtk/gtk.h> #include <glade/glade-xml.h> +G_BEGIN_DECLS + typedef struct { const gchar *name; GtkWidget **ptr; } WidgetLookup; -G_BEGIN_DECLS - GladeXML *ephy_glade_widget_new (const char *file, const char *widget_name, GtkWidget **root, |