diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-03-30 05:05:38 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-03-30 05:05:38 +0800 |
commit | e6ada76f2b2e7685a71f2be65b4a00ec59e96459 (patch) | |
tree | 9fbb65495cfba3945687b9ce14319313bd1357e7 /executive-summary/widgets | |
parent | cf658dcba6ea5c52a8b2e7bb1b39cae37aaa3ca4 (diff) | |
download | gsoc2013-evolution-e6ada76f2b2e7685a71f2be65b4a00ec59e96459.tar.gz gsoc2013-evolution-e6ada76f2b2e7685a71f2be65b4a00ec59e96459.tar.zst gsoc2013-evolution-e6ada76f2b2e7685a71f2be65b4a00ec59e96459.zip |
Clean up includes. Remove/replace <gnome.h>, <bonobo.h> and <gtk/gtk.h>.
2001-03-29 Kjartan Maraas <kmaraas@gnome.org>
* *.*: Clean up includes. Remove/replace <gnome.h>, <bonobo.h>
and <gtk/gtk.h>.
svn path=/trunk/; revision=9027
Diffstat (limited to 'executive-summary/widgets')
4 files changed, 5 insertions, 4 deletions
diff --git a/executive-summary/widgets/e-summary-subwindow.c b/executive-summary/widgets/e-summary-subwindow.c index bf5bcb1eba..961fbd7ac4 100644 --- a/executive-summary/widgets/e-summary-subwindow.c +++ b/executive-summary/widgets/e-summary-subwindow.c @@ -25,13 +25,13 @@ #include <config.h> #endif -#include <gnome.h> #include <gal/util/e-util.h> #include <gal/widgets/e-font.h> #include <gal/e-text/e-text.h> #include "e-summary-subwindow.h" +#include "e-summary-titlebar.h" #define PARENT_TYPE (gnome_canvas_group_get_type ()) #define TITLEBAR_BORDER_WIDTH 2 diff --git a/executive-summary/widgets/e-summary-title-button.c b/executive-summary/widgets/e-summary-title-button.c index 81fa8e5923..6a1992c6df 100644 --- a/executive-summary/widgets/e-summary-title-button.c +++ b/executive-summary/widgets/e-summary-title-button.c @@ -25,7 +25,7 @@ #include <config.h> #endif -#include <gnome.h> +#include <libgnomeui/gnome-canvas-rect-ellipse.h> #include <gal/util/e-util.h> #include <gdk-pixbuf/gdk-pixbuf.h> diff --git a/executive-summary/widgets/e-summary-titlebar.c b/executive-summary/widgets/e-summary-titlebar.c index a5c5178a80..b79e0dc8c7 100644 --- a/executive-summary/widgets/e-summary-titlebar.c +++ b/executive-summary/widgets/e-summary-titlebar.c @@ -25,7 +25,6 @@ #include <config.h> #endif -#include <gnome.h> #include <gal/util/e-util.h> #include <gal/widgets/e-font.h> diff --git a/executive-summary/widgets/esummary-window-test.c b/executive-summary/widgets/esummary-window-test.c index 3a0ad0ab6b..7928e8b6f9 100644 --- a/executive-summary/widgets/esummary-window-test.c +++ b/executive-summary/widgets/esummary-window-test.c @@ -1,8 +1,10 @@ -#include <gnome.h> #include <gal/widgets/e-canvas.h> #include "e-summary-subwindow.h" #include "e-summary-titlebar.h" + +void close_test (GtkWidget *widget, gpointer data); + void close_test (GtkWidget *widget, gpointer data) |