diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-03-30 04:55:01 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-03-30 04:55:01 +0800 |
commit | cf658dcba6ea5c52a8b2e7bb1b39cae37aaa3ca4 (patch) | |
tree | 5af8243b9fd0b0fda717fd8e064ba1851a91c6f5 /addressbook/gui/component/addressbook.c | |
parent | 57574f0be32f05aeaa19b71b452d690ed3edbdff (diff) | |
download | gsoc2013-evolution-cf658dcba6ea5c52a8b2e7bb1b39cae37aaa3ca4.tar.gz gsoc2013-evolution-cf658dcba6ea5c52a8b2e7bb1b39cae37aaa3ca4.tar.zst gsoc2013-evolution-cf658dcba6ea5c52a8b2e7bb1b39cae37aaa3ca4.zip |
Clean up #includes. Replace <gnome.h>, <bonobo.h> and <gtk/gtk.h> with
2001-03-29 Kjartan Maraas <kmaraas@gnome.org>
* *.*: Clean up #includes. Replace <gnome.h>, <bonobo.h> and
<gtk/gtk.h> with more finegrained headers where needed.
svn path=/trunk/; revision=9026
Diffstat (limited to 'addressbook/gui/component/addressbook.c')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 09b45a65d2..8447ac68c1 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -10,18 +10,16 @@ #include <config.h> -#include <gnome.h> -#include <bonobo.h> - -#include "addressbook.h" - -#include <ebook/e-book.h> +#include <glib.h> +#include <libgnome/gnome-defs.h> +#include <libgnome/gnome-i18n.h> +#include <libgnomeui/gnome-app.h> +#include <libgnomeui/gnome-stock.h> +#include <libgnomeui/gnome-uidefs.h> +#include <bonobo/bonobo-generic-factory.h> +#include <bonobo/bonobo-ui-util.h> #include <gal/util/e-util.h> #include <gal/widgets/e-unicode.h> -#include "addressbook/gui/search/e-addressbook-search-dialog.h" - -#include "addressbook/gui/widgets/e-addressbook-view.h" -#include <widgets/misc/e-search-bar.h> #include <select-names/e-select-names.h> #include <select-names/e-select-names-manager.h> @@ -29,9 +27,14 @@ #include "e-contact-editor.h" #include "e-contact-save-as.h" #include "addressbook-config.h" - +#include "addressbook.h" +#include "addressbook/gui/search/e-addressbook-search-dialog.h" +#include "addressbook/gui/widgets/e-addressbook-view.h" #include <addressbook/printing/e-contact-print.h> +#include <ebook/e-book.h> +#include <widgets/misc/e-search-bar.h> + #define PROPERTY_FOLDER_URI "folder_uri" #define PROPERTY_FOLDER_URI_IDX 1 |