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/search | |
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/search')
-rw-r--r-- | addressbook/gui/search/e-addressbook-search-dialog.c | 6 | ||||
-rw-r--r-- | addressbook/gui/search/e-addressbook-search-dialog.h | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/addressbook/gui/search/e-addressbook-search-dialog.c b/addressbook/gui/search/e-addressbook-search-dialog.c index f334b5e652..17399cd68c 100644 --- a/addressbook/gui/search/e-addressbook-search-dialog.c +++ b/addressbook/gui/search/e-addressbook-search-dialog.c @@ -21,11 +21,13 @@ */ #include <config.h> -#include <gnome.h> + #include <gal/widgets/e-canvas.h> +#include <gal/widgets/e-scroll-frame.h> + #include "e-addressbook-search-dialog.h" #include "addressbook/gui/widgets/e-minicard-view-widget.h" -#include <gal/widgets/e-scroll-frame.h> + static void e_addressbook_search_dialog_init (EAddressbookSearchDialog *widget); static void e_addressbook_search_dialog_class_init (EAddressbookSearchDialogClass *klass); diff --git a/addressbook/gui/search/e-addressbook-search-dialog.h b/addressbook/gui/search/e-addressbook-search-dialog.h index dc54275a77..8fcd23492d 100644 --- a/addressbook/gui/search/e-addressbook-search-dialog.h +++ b/addressbook/gui/search/e-addressbook-search-dialog.h @@ -21,7 +21,6 @@ #ifndef __E_ADDRESSBOOK_SEARCH_DIALOG_H__ #define __E_ADDRESSBOOK_SEARCH_DIALOG_H__ -#include <gnome.h> #include <ebook/e-book.h> #include "filter/rule-context.h" @@ -32,6 +31,8 @@ extern "C" { #pragma } #endif /* __cplusplus */ +#include <libgnomeui/gnome-dialog.h> + #define E_ADDRESSBOOK_SEARCH_DIALOG_TYPE (e_addressbook_search_dialog_get_type ()) #define E_ADDRESSBOOK_SEARCH_DIALOG(obj) (GTK_CHECK_CAST ((obj), E_ADDRESSBOOK_SEARCH_DIALOG_TYPE, EAddressbookSearchDialog)) #define E_ADDRESSBOOK_SEARCH_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_ADDRESSBOOK_SEARCH_DIALOG_TYPE, EAddressbookSearchDialogClass)) |