From cf658dcba6ea5c52a8b2e7bb1b39cae37aaa3ca4 Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Thu, 29 Mar 2001 20:55:01 +0000 Subject: Clean up #includes. Replace , and with 2001-03-29 Kjartan Maraas * *.*: Clean up #includes. Replace , and with more finegrained headers where needed. svn path=/trunk/; revision=9026 --- addressbook/gui/component/addressbook-component.c | 2 +- addressbook/gui/component/addressbook-config.c | 11 +++++++--- addressbook/gui/component/addressbook-factory.c | 7 ++++-- addressbook/gui/component/addressbook-storage.c | 18 ++++++++-------- addressbook/gui/component/addressbook.c | 25 ++++++++++++---------- addressbook/gui/component/e-address-widget.h | 5 ++++- addressbook/gui/component/e-cardlist-model.c | 3 +-- .../component/select-names/e-select-names-bonobo.c | 9 ++++---- .../select-names/e-select-names-completion.c | 8 +++++-- .../select-names/e-select-names-factory.c | 3 +-- .../select-names/e-select-names-manager.c | 5 +++-- .../select-names/e-select-names-manager.h | 4 ++-- .../component/select-names/e-select-names-model.c | 6 ++++-- .../component/select-names/e-select-names-model.h | 2 +- .../component/select-names/e-select-names-popup.c | 12 ++++++++++- .../select-names/e-select-names-table-model.c | 3 ++- .../select-names/e-select-names-table-model.h | 4 ++-- .../select-names/e-select-names-text-model.c | 3 ++- .../select-names/e-select-names-text-model.h | 4 ++-- .../gui/component/select-names/e-select-names.c | 16 +++++++++----- .../gui/component/select-names/e-select-names.h | 12 +++++++---- .../gui/contact-editor/e-contact-editor-address.c | 2 +- .../gui/contact-editor/e-contact-editor-address.h | 2 +- .../gui/contact-editor/e-contact-editor-fullname.c | 4 ++-- .../gui/contact-editor/e-contact-editor-fullname.h | 2 +- addressbook/gui/contact-editor/e-contact-editor.c | 18 +++++++++------- addressbook/gui/contact-editor/e-contact-editor.h | 8 +++---- .../gui/contact-editor/e-contact-quick-add.c | 10 ++++++++- .../gui/contact-editor/e-contact-quick-add.h | 1 - addressbook/gui/contact-editor/e-contact-save-as.c | 6 ++++-- addressbook/gui/contact-editor/e-contact-save-as.h | 1 - addressbook/gui/contact-editor/test-editor.c | 5 ++++- .../gui/search/e-addressbook-search-dialog.c | 6 ++++-- .../gui/search/e-addressbook-search-dialog.h | 3 ++- addressbook/gui/widgets/e-addressbook-model.c | 4 ++-- addressbook/gui/widgets/e-addressbook-view.c | 4 +--- addressbook/gui/widgets/e-addressbook-view.h | 4 ++-- addressbook/gui/widgets/e-minicard-control.c | 10 +++++---- addressbook/gui/widgets/e-minicard-label.c | 3 +-- addressbook/gui/widgets/e-minicard-label.h | 3 ++- addressbook/gui/widgets/e-minicard-view-widget.c | 4 +++- addressbook/gui/widgets/e-minicard-view-widget.h | 3 +-- addressbook/gui/widgets/e-minicard-view.c | 3 ++- addressbook/gui/widgets/e-minicard-view.h | 1 - addressbook/gui/widgets/e-minicard-widget-test.c | 1 - addressbook/gui/widgets/e-minicard-widget.c | 1 - addressbook/gui/widgets/e-minicard-widget.h | 3 +-- addressbook/gui/widgets/e-minicard.c | 9 ++++---- addressbook/gui/widgets/e-minicard.h | 2 +- .../gui/widgets/gal-view-factory-minicard.c | 5 +++-- addressbook/gui/widgets/test-minicard-label.c | 3 +-- addressbook/gui/widgets/test-minicard-view.c | 2 -- addressbook/gui/widgets/test-minicard.c | 6 +++++- addressbook/gui/widgets/test-reflow.c | 4 ++-- 54 files changed, 180 insertions(+), 125 deletions(-) (limited to 'addressbook/gui') diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index a12dca8086..363f39fcdf 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -25,7 +25,7 @@ #include #endif -#include +#include #include "evolution-shell-component.h" #include "evolution-storage.h" diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 43f34a4389..e56c1fa799 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -2,11 +2,16 @@ #include -#include -#include +#include +#include +#include +#include +#include +#include #include #include -#include "e-util/e-html-utils.h" +#include +#include #include "addressbook-config.h" #include "addressbook-storage.h" diff --git a/addressbook/gui/component/addressbook-factory.c b/addressbook/gui/component/addressbook-factory.c index 7078a774ef..89514d6527 100644 --- a/addressbook/gui/component/addressbook-factory.c +++ b/addressbook/gui/component/addressbook-factory.c @@ -9,9 +9,12 @@ */ #include -#include -#include +#include +#include +#include +#include #include +#include #include #include #include diff --git a/addressbook/gui/component/addressbook-storage.c b/addressbook/gui/component/addressbook-storage.c index 531e2acd7b..f09c42f980 100644 --- a/addressbook/gui/component/addressbook-storage.c +++ b/addressbook/gui/component/addressbook-storage.c @@ -50,23 +50,23 @@ #include #endif -#include - -#include "evolution-shell-component.h" -#include "evolution-storage.h" +#include +#include +#include +#include #include #include -#include "addressbook-storage.h" +#include #include #include -#include -#include -#include -#include +#include "evolution-shell-component.h" +#include "evolution-storage.h" + +#include "addressbook-storage.h" #define ADDRESSBOOK_SOURCES_XML "addressbook-sources.xml" 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 -#include -#include - -#include "addressbook.h" - -#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include -#include "addressbook/gui/search/e-addressbook-search-dialog.h" - -#include "addressbook/gui/widgets/e-addressbook-view.h" -#include #include #include @@ -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 +#include +#include + #define PROPERTY_FOLDER_URI "folder_uri" #define PROPERTY_FOLDER_URI_IDX 1 diff --git a/addressbook/gui/component/e-address-widget.h b/addressbook/gui/component/e-address-widget.h index a85ed90d8b..8cf425d5c9 100644 --- a/addressbook/gui/component/e-address-widget.h +++ b/addressbook/gui/component/e-address-widget.h @@ -28,7 +28,10 @@ #ifndef __E_ADDRESS_WIDGET_H__ #define __E_ADDRESS_WIDGET_H__ -#include +#include +#include +#include +#include #include #include #include diff --git a/addressbook/gui/component/e-cardlist-model.c b/addressbook/gui/component/e-cardlist-model.c index 23b61d58be..007aa395d9 100644 --- a/addressbook/gui/component/e-cardlist-model.c +++ b/addressbook/gui/component/e-cardlist-model.c @@ -8,11 +8,10 @@ */ #include -#include "e-cardlist-model.h" #include #include #include -#include +#include "e-cardlist-model.h" #define PARENT_TYPE e_table_model_get_type() diff --git a/addressbook/gui/component/select-names/e-select-names-bonobo.c b/addressbook/gui/component/select-names/e-select-names-bonobo.c index f21e33361f..013ab23538 100644 --- a/addressbook/gui/component/select-names/e-select-names-bonobo.c +++ b/addressbook/gui/component/select-names/e-select-names-bonobo.c @@ -25,19 +25,18 @@ #include #endif -#include - #include #include -#include "Evolution-Addressbook-SelectNames.h" - #include #include -#include "e-select-names-manager.h" +#include "Evolution-Addressbook-SelectNames.h" + +#include "e-select-names-manager.h" #include "e-select-names-bonobo.h" + #define PARENT_TYPE bonobo_object_get_type () static BonoboObjectClass *parent_class = NULL; diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c index f1087bebeb..17f4e0e790 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -26,10 +26,14 @@ */ #include +#include #include #include -#include -#include + +#include +#include +#include + #include #include #include "e-select-names-completion.h" diff --git a/addressbook/gui/component/select-names/e-select-names-factory.c b/addressbook/gui/component/select-names/e-select-names-factory.c index 1b97172f9e..39fdcf8cee 100644 --- a/addressbook/gui/component/select-names/e-select-names-factory.c +++ b/addressbook/gui/component/select-names/e-select-names-factory.c @@ -25,10 +25,9 @@ #include #endif -#include +#include #include "e-select-names-bonobo.h" - #include "e-select-names-factory.h" diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c index e1718cf3a7..6c06624918 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.c +++ b/addressbook/gui/component/select-names/e-select-names-manager.c @@ -7,10 +7,12 @@ */ #include + #include #include #include -#include + +#include #include "e-select-names-manager.h" #include "e-select-names-model.h" @@ -18,7 +20,6 @@ #include "e-select-names.h" #include "e-select-names-completion.h" #include "e-select-names-popup.h" -#include #include /* Object argument IDs */ diff --git a/addressbook/gui/component/select-names/e-select-names-manager.h b/addressbook/gui/component/select-names/e-select-names-manager.h index 7b68528669..4c177d1685 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.h +++ b/addressbook/gui/component/select-names/e-select-names-manager.h @@ -9,9 +9,9 @@ #ifndef __E_SELECT_NAMES_MANAGER_H__ #define __E_SELECT_NAMES_MANAGER_H__ -#include -#include #include +#include +#include #include #include "e-select-names.h" diff --git a/addressbook/gui/component/select-names/e-select-names-model.c b/addressbook/gui/component/select-names/e-select-names-model.c index 939c40aa8b..5dd11496d2 100644 --- a/addressbook/gui/component/select-names/e-select-names-model.c +++ b/addressbook/gui/component/select-names/e-select-names-model.c @@ -8,14 +8,16 @@ */ #include + #include #include #include -#include #include +#include -#include "e-select-names-model.h" #include + +#include "e-select-names-model.h" #include "addressbook/backend/ebook/e-card-simple.h" #define SEPARATOR ", " diff --git a/addressbook/gui/component/select-names/e-select-names-model.h b/addressbook/gui/component/select-names/e-select-names-model.h index 4b3413f983..9d8c66f063 100644 --- a/addressbook/gui/component/select-names/e-select-names-model.h +++ b/addressbook/gui/component/select-names/e-select-names-model.h @@ -12,7 +12,7 @@ #define __E_SELECT_NAMES_MODEL_H__ #include -#include +#include #include #include #include diff --git a/addressbook/gui/component/select-names/e-select-names-popup.c b/addressbook/gui/component/select-names/e-select-names-popup.c index 85c2489b1a..f6164f0022 100644 --- a/addressbook/gui/component/select-names/e-select-names-popup.c +++ b/addressbook/gui/component/select-names/e-select-names-popup.c @@ -26,8 +26,18 @@ */ #include + #include -#include +#include + +#include +#include +#include +#include +#include +#include +#include + #include #include "e-select-names-popup.h" diff --git a/addressbook/gui/component/select-names/e-select-names-table-model.c b/addressbook/gui/component/select-names/e-select-names-table-model.c index be1f95cc98..f0dc52bad7 100644 --- a/addressbook/gui/component/select-names/e-select-names-table-model.c +++ b/addressbook/gui/component/select-names/e-select-names-table-model.c @@ -10,9 +10,10 @@ #include #include #include -#include +#include #include + #include "e-select-names-table-model.h" #include "addressbook/backend/ebook/e-card-simple.h" diff --git a/addressbook/gui/component/select-names/e-select-names-table-model.h b/addressbook/gui/component/select-names/e-select-names-table-model.h index 7a051d337c..a7feb4d9c1 100644 --- a/addressbook/gui/component/select-names/e-select-names-table-model.h +++ b/addressbook/gui/component/select-names/e-select-names-table-model.h @@ -10,10 +10,10 @@ #define __E_SELECT_NAMES_TABLE_MODEL_H__ #include -#include #include -#include "e-select-names-model.h" +#include #include +#include "e-select-names-model.h" #define E_TYPE_SELECT_NAMES_TABLE_MODEL (e_select_names_table_model_get_type ()) #define E_SELECT_NAMES_TABLE_MODEL(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SELECT_NAMES_TABLE_MODEL, ESelectNamesTableModel)) diff --git a/addressbook/gui/component/select-names/e-select-names-text-model.c b/addressbook/gui/component/select-names/e-select-names-text-model.c index 1a1bd06b60..6aa6a75a9a 100644 --- a/addressbook/gui/component/select-names/e-select-names-text-model.c +++ b/addressbook/gui/component/select-names/e-select-names-text-model.c @@ -8,13 +8,14 @@ */ #include + #include #include #include #include -#include #include + #include #include "e-select-names-text-model.h" diff --git a/addressbook/gui/component/select-names/e-select-names-text-model.h b/addressbook/gui/component/select-names/e-select-names-text-model.h index 6458bac59c..7a9e0a7396 100644 --- a/addressbook/gui/component/select-names/e-select-names-text-model.h +++ b/addressbook/gui/component/select-names/e-select-names-text-model.h @@ -11,10 +11,10 @@ #define __E_SELECT_NAMES_TEXT_MODEL_H__ #include -#include #include -#include "e-select-names-model.h" +#include #include +#include "e-select-names-model.h" #define E_TYPE_SELECT_NAMES_TEXT_MODEL (e_select_names_text_model_get_type ()) #define E_SELECT_NAMES_TEXT_MODEL(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SELECT_NAMES_TEXT_MODEL, ESelectNamesTextModel)) diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index bb00fef6e7..cbe9624be7 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -20,17 +20,23 @@ */ #include -#include -#include "e-select-names.h" +#include +#include +#include +#include + #include +#include + #include #include #include +#include +#include + +#include "e-select-names.h" #include #include "e-select-names-table-model.h" -#include -#include -#include static void e_select_names_init (ESelectNames *card); static void e_select_names_class_init (ESelectNamesClass *klass); diff --git a/addressbook/gui/component/select-names/e-select-names.h b/addressbook/gui/component/select-names/e-select-names.h index 9d47558117..d059de453d 100644 --- a/addressbook/gui/component/select-names/e-select-names.h +++ b/addressbook/gui/component/select-names/e-select-names.h @@ -21,14 +21,18 @@ #ifndef __E_SELECT_NAMES_H__ #define __E_SELECT_NAMES_H__ -#include +#include +#include +#include +#include +#include #include -#include #include #include -#include "e-select-names-model.h" -#include +#include "e-select-names-model.h" +#include "e-util/e-list.h" +#include "shell/evolution-storage-listener.h" #ifdef __cplusplus extern "C" { diff --git a/addressbook/gui/contact-editor/e-contact-editor-address.c b/addressbook/gui/contact-editor/e-contact-editor-address.c index 1df0462b7d..777a3cb617 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-address.c +++ b/addressbook/gui/contact-editor/e-contact-editor-address.c @@ -21,7 +21,7 @@ */ #include -#include +#include #include #include diff --git a/addressbook/gui/contact-editor/e-contact-editor-address.h b/addressbook/gui/contact-editor/e-contact-editor-address.h index 95fe8bf865..48d88aab85 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-address.h +++ b/addressbook/gui/contact-editor/e-contact-editor-address.h @@ -21,7 +21,7 @@ #ifndef __E_CONTACT_EDITOR_ADDRESS_H__ #define __E_CONTACT_EDITOR_ADDRESS_H__ -#include +#include #include #include diff --git a/addressbook/gui/contact-editor/e-contact-editor-fullname.c b/addressbook/gui/contact-editor/e-contact-editor-fullname.c index 0fb7fb57d0..69477d3325 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-fullname.c +++ b/addressbook/gui/contact-editor/e-contact-editor-fullname.c @@ -21,9 +21,9 @@ */ #include -#include +#include #include -#include +#include "e-contact-editor-fullname.h" static void e_contact_editor_fullname_init (EContactEditorFullname *card); static void e_contact_editor_fullname_class_init (EContactEditorFullnameClass *klass); diff --git a/addressbook/gui/contact-editor/e-contact-editor-fullname.h b/addressbook/gui/contact-editor/e-contact-editor-fullname.h index b9138da324..70bb793d0a 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-fullname.h +++ b/addressbook/gui/contact-editor/e-contact-editor-fullname.h @@ -21,7 +21,7 @@ #ifndef __E_CONTACT_EDITOR_FULLNAME_H__ #define __E_CONTACT_EDITOR_FULLNAME_H__ -#include +#include #include #include diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 2edee284f4..81d626c40b 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -21,19 +21,21 @@ */ #include -#include -#include "e-contact-editor.h" -#include -#include +#include +#include #include #include -#include "e-util/e-gui-utils.h" #include #include #include -#include -#include "addressbook/printing/e-contact-print.h" -#include "addressbook/printing/e-contact-print-envelope.h" +#include +#include +#include + +#include "e-contact-editor.h" +#include "e-contact-editor-fullname.h" +#include "e-contact-editor-address.h" +#include "e-contact-save-as.h" /* Signal IDs */ enum { diff --git a/addressbook/gui/contact-editor/e-contact-editor.h b/addressbook/gui/contact-editor/e-contact-editor.h index 184829b64c..64d7571ede 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.h +++ b/addressbook/gui/contact-editor/e-contact-editor.h @@ -21,11 +21,11 @@ #ifndef __E_CONTACT_EDITOR_H__ #define __E_CONTACT_EDITOR_H__ -#include +#include +#include #include -#include -#include "addressbook/backend/ebook/e-card.h" -#include "addressbook/backend/ebook/e-card-simple.h" +#include +#include #ifdef __cplusplus extern "C" { diff --git a/addressbook/gui/contact-editor/e-contact-quick-add.c b/addressbook/gui/contact-editor/e-contact-quick-add.c index 81cd6b7cea..0ab39701d3 100644 --- a/addressbook/gui/contact-editor/e-contact-quick-add.c +++ b/addressbook/gui/contact-editor/e-contact-quick-add.c @@ -27,7 +27,15 @@ #include #include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include diff --git a/addressbook/gui/contact-editor/e-contact-quick-add.h b/addressbook/gui/contact-editor/e-contact-quick-add.h index 9d928e43f4..81e3fdaab5 100644 --- a/addressbook/gui/contact-editor/e-contact-quick-add.h +++ b/addressbook/gui/contact-editor/e-contact-quick-add.h @@ -28,7 +28,6 @@ #ifndef __E_CONTACT_QUICK_ADD_H__ #define __E_CONTACT_QUICK_ADD_H__ -#include #include typedef void (*EContactQuickAddCallback) (ECard *new_card, gpointer user_data); diff --git a/addressbook/gui/contact-editor/e-contact-save-as.c b/addressbook/gui/contact-editor/e-contact-save-as.c index 5a88c31ffa..5381fb8b2d 100644 --- a/addressbook/gui/contact-editor/e-contact-save-as.c +++ b/addressbook/gui/contact-editor/e-contact-save-as.c @@ -20,10 +20,12 @@ */ #include -#include -#include #include #include +#include +#include +#include +#include "e-contact-save-as.h" typedef struct { GtkFileSelection *filesel; diff --git a/addressbook/gui/contact-editor/e-contact-save-as.h b/addressbook/gui/contact-editor/e-contact-save-as.h index d1c84dc596..d304d4d558 100644 --- a/addressbook/gui/contact-editor/e-contact-save-as.h +++ b/addressbook/gui/contact-editor/e-contact-save-as.h @@ -21,7 +21,6 @@ #ifndef __E_CONTACT_SAVE_AS_H__ #define __E_CONTACT_SAVE_AS_H__ -#include #include #include "addressbook/backend/ebook/e-card.h" #include "addressbook/backend/ebook/e-card-simple.h" diff --git a/addressbook/gui/contact-editor/test-editor.c b/addressbook/gui/contact-editor/test-editor.c index 8a6920107b..22c871c693 100644 --- a/addressbook/gui/contact-editor/test-editor.c +++ b/addressbook/gui/contact-editor/test-editor.c @@ -22,7 +22,10 @@ #include "config.h" -#include +#include +#include +#include +#include #include #include "e-contact-editor.h" 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 -#include + #include +#include + #include "e-addressbook-search-dialog.h" #include "addressbook/gui/widgets/e-minicard-view-widget.h" -#include + 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 #include #include "filter/rule-context.h" @@ -32,6 +31,8 @@ extern "C" { #pragma } #endif /* __cplusplus */ +#include + #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)) diff --git a/addressbook/gui/widgets/e-addressbook-model.c b/addressbook/gui/widgets/e-addressbook-model.c index 1716c0c498..71c0db892c 100644 --- a/addressbook/gui/widgets/e-addressbook-model.c +++ b/addressbook/gui/widgets/e-addressbook-model.c @@ -8,11 +8,11 @@ */ #include -#include "e-addressbook-model.h" +#include #include #include #include -#include +#include "e-addressbook-model.h" #define PARENT_TYPE e_table_model_get_type() ETableModelClass *parent_class; diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index e22228023f..6229eb0ccf 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -21,9 +21,6 @@ */ #include -#include - -#include "e-addressbook-view.h" #include #include @@ -37,6 +34,7 @@ #include "gal-view-factory-minicard.h" #include "gal-view-minicard.h" +#include "e-addressbook-view.h" #include "e-addressbook-model.h" #include "e-minicard-view-widget.h" diff --git a/addressbook/gui/widgets/e-addressbook-view.h b/addressbook/gui/widgets/e-addressbook-view.h index 7197d237e5..e481efec65 100644 --- a/addressbook/gui/widgets/e-addressbook-view.h +++ b/addressbook/gui/widgets/e-addressbook-view.h @@ -21,8 +21,8 @@ #ifndef __E_ADDRESSBOOK_VIEW_H__ #define __E_ADDRESSBOOK_VIEW_H__ -#include -#include +#include +#include #include "addressbook/backend/ebook/e-book.h" #ifdef __cplusplus diff --git a/addressbook/gui/widgets/e-minicard-control.c b/addressbook/gui/widgets/e-minicard-control.c index 0efc7d69ab..ab1356d1d5 100644 --- a/addressbook/gui/widgets/e-minicard-control.c +++ b/addressbook/gui/widgets/e-minicard-control.c @@ -9,14 +9,16 @@ */ #include -#include -#include -#include "addressbook/backend/ebook/e-book.h" +#include +#include +#include +#include +#include +#include #include "e-minicard-control.h" #include "e-minicard-widget.h" -#include "addressbook/backend/ebook/e-card.h" #if 0 enum { diff --git a/addressbook/gui/widgets/e-minicard-label.c b/addressbook/gui/widgets/e-minicard-label.c index 7e3a0e511c..f04fccf860 100644 --- a/addressbook/gui/widgets/e-minicard-label.c +++ b/addressbook/gui/widgets/e-minicard-label.c @@ -21,12 +21,11 @@ */ #include -#include -#include "e-minicard-label.h" #include #include #include #include +#include "e-minicard-label.h" static void e_minicard_label_init (EMinicardLabel *card); static void e_minicard_label_class_init (EMinicardLabelClass *klass); diff --git a/addressbook/gui/widgets/e-minicard-label.h b/addressbook/gui/widgets/e-minicard-label.h index 15d3a63105..c4d7be3ec2 100644 --- a/addressbook/gui/widgets/e-minicard-label.h +++ b/addressbook/gui/widgets/e-minicard-label.h @@ -21,7 +21,8 @@ #ifndef __E_MINICARD_LABEL_H__ #define __E_MINICARD_LABEL_H__ -#include +#include +#include #ifdef __cplusplus extern "C" { diff --git a/addressbook/gui/widgets/e-minicard-view-widget.c b/addressbook/gui/widgets/e-minicard-view-widget.c index b3b326397f..851beb4684 100644 --- a/addressbook/gui/widgets/e-minicard-view-widget.c +++ b/addressbook/gui/widgets/e-minicard-view-widget.c @@ -21,9 +21,11 @@ */ #include -#include + #include + #include "e-minicard-view-widget.h" + static void e_minicard_view_widget_init (EMinicardViewWidget *widget); static void e_minicard_view_widget_class_init (EMinicardViewWidgetClass *klass); static void e_minicard_view_widget_set_arg (GtkObject *o, GtkArg *arg, guint arg_id); diff --git a/addressbook/gui/widgets/e-minicard-view-widget.h b/addressbook/gui/widgets/e-minicard-view-widget.h index b56a3d856e..e22d651826 100644 --- a/addressbook/gui/widgets/e-minicard-view-widget.h +++ b/addressbook/gui/widgets/e-minicard-view-widget.h @@ -21,10 +21,9 @@ #ifndef __E_MINICARD_VIEW_WIDGET_H__ #define __E_MINICARD_VIEW_WIDGET_H__ -#include -#include "e-minicard-view.h" #include #include "addressbook/backend/ebook/e-book.h" +#include "e-minicard-view.h" #ifdef __cplusplus extern "C" { diff --git a/addressbook/gui/widgets/e-minicard-view.c b/addressbook/gui/widgets/e-minicard-view.c index 7afe9e6ca3..31cf0e72b3 100644 --- a/addressbook/gui/widgets/e-minicard-view.c +++ b/addressbook/gui/widgets/e-minicard-view.c @@ -21,11 +21,12 @@ */ #include -#include + #include #include "e-minicard-view.h" #include "e-minicard.h" #include "e-contact-editor.h" + static void e_minicard_view_init (EMinicardView *reflow); static void e_minicard_view_class_init (EMinicardViewClass *klass); static void e_minicard_view_set_arg (GtkObject *o, GtkArg *arg, guint arg_id); diff --git a/addressbook/gui/widgets/e-minicard-view.h b/addressbook/gui/widgets/e-minicard-view.h index fc52a4d864..a82dea3f6a 100644 --- a/addressbook/gui/widgets/e-minicard-view.h +++ b/addressbook/gui/widgets/e-minicard-view.h @@ -21,7 +21,6 @@ #ifndef __E_MINICARD_VIEW_H__ #define __E_MINICARD_VIEW_H__ -#include #include #include #include "addressbook/backend/ebook/e-book.h" diff --git a/addressbook/gui/widgets/e-minicard-widget-test.c b/addressbook/gui/widgets/e-minicard-widget-test.c index f6489f2a6a..9e37a5f815 100644 --- a/addressbook/gui/widgets/e-minicard-widget-test.c +++ b/addressbook/gui/widgets/e-minicard-widget-test.c @@ -49,7 +49,6 @@ #include "config.h" -#include #include "e-minicard-widget.h" /* This is a horrible thing to do, but it is just a test. */ diff --git a/addressbook/gui/widgets/e-minicard-widget.c b/addressbook/gui/widgets/e-minicard-widget.c index 3712d5e306..5ce6c088b2 100644 --- a/addressbook/gui/widgets/e-minicard-widget.c +++ b/addressbook/gui/widgets/e-minicard-widget.c @@ -21,7 +21,6 @@ */ #include -#include #include "e-minicard-widget.h" #include "e-minicard.h" diff --git a/addressbook/gui/widgets/e-minicard-widget.h b/addressbook/gui/widgets/e-minicard-widget.h index 3eb544c15e..950afba7d8 100644 --- a/addressbook/gui/widgets/e-minicard-widget.h +++ b/addressbook/gui/widgets/e-minicard-widget.h @@ -21,9 +21,8 @@ #ifndef __E_MINICARD_WIDGET_H__ #define __E_MINICARD_WIDGET_H__ -#include -#include "addressbook/backend/ebook/e-card.h" #include +#include "addressbook/backend/ebook/e-card.h" #ifdef __cplusplus extern "C" { diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c index 871d8aa446..787f131a44 100644 --- a/addressbook/gui/widgets/e-minicard.c +++ b/addressbook/gui/widgets/e-minicard.c @@ -21,20 +21,19 @@ */ #include -#include -#include "e-minicard.h" -#include "e-minicard-label.h" -#include "addressbook/backend/ebook/e-book.h" #include #include #include #include #include +#include "addressbook/backend/ebook/e-book.h" #include "addressbook/printing/e-contact-print.h" #include "addressbook/printing/e-contact-print-envelope.h" +#include "e-minicard.h" +#include "e-minicard-label.h" +#include "e-minicard-view.h" #include "e-contact-editor.h" #include "e-contact-save-as.h" -#include "e-minicard-view.h" static void e_minicard_init (EMinicard *card); static void e_minicard_class_init (EMinicardClass *klass); diff --git a/addressbook/gui/widgets/e-minicard.h b/addressbook/gui/widgets/e-minicard.h index 34dbac0cc0..3ebbe22505 100644 --- a/addressbook/gui/widgets/e-minicard.h +++ b/addressbook/gui/widgets/e-minicard.h @@ -21,7 +21,7 @@ #ifndef __E_MINICARD_H__ #define __E_MINICARD_H__ -#include +#include #include "addressbook/contact-editor/e-contact-editor.h" #include "addressbook/backend/ebook/e-card.h" #include "addressbook/backend/ebook/e-card-simple.h" diff --git a/addressbook/gui/widgets/gal-view-factory-minicard.c b/addressbook/gui/widgets/gal-view-factory-minicard.c index 1d10b71f78..10e13d9bdf 100644 --- a/addressbook/gui/widgets/gal-view-factory-minicard.c +++ b/addressbook/gui/widgets/gal-view-factory-minicard.c @@ -8,10 +8,11 @@ * (C) 2000, 2001 Ximian, Inc. */ #include -#include "gal-view-factory-minicard.h" -#include "gal-view-minicard.h" +#include #include #include +#include "gal-view-factory-minicard.h" +#include "gal-view-minicard.h" #define GVFE_CLASS(e) ((GalViewFactoryMinicardClass *)((GtkObject *)e)->klass) diff --git a/addressbook/gui/widgets/test-minicard-label.c b/addressbook/gui/widgets/test-minicard-label.c index 0566a85760..470a84389e 100644 --- a/addressbook/gui/widgets/test-minicard-label.c +++ b/addressbook/gui/widgets/test-minicard-label.c @@ -19,9 +19,8 @@ #include "config.h" -#include -#include "e-minicard-label.h" #include +#include "e-minicard-label.h" /* This is a horrible thing to do, but it is just a test. */ GnomeCanvasItem *label; diff --git a/addressbook/gui/widgets/test-minicard-view.c b/addressbook/gui/widgets/test-minicard-view.c index c03d11d07e..54cedd1a58 100644 --- a/addressbook/gui/widgets/test-minicard-view.c +++ b/addressbook/gui/widgets/test-minicard-view.c @@ -17,9 +17,7 @@ #include "config.h" -#include #include -#include #include #include "e-minicard-view.h" diff --git a/addressbook/gui/widgets/test-minicard.c b/addressbook/gui/widgets/test-minicard.c index e16ca675b3..b368ba1b87 100644 --- a/addressbook/gui/widgets/test-minicard.c +++ b/addressbook/gui/widgets/test-minicard.c @@ -19,7 +19,11 @@ #include "config.h" -#include +#include +#include +#include +#include + #include "e-minicard.h" /* This is a horrible thing to do, but it is just a test. */ diff --git a/addressbook/gui/widgets/test-reflow.c b/addressbook/gui/widgets/test-reflow.c index 1a2cc9f017..0e54c57164 100644 --- a/addressbook/gui/widgets/test-reflow.c +++ b/addressbook/gui/widgets/test-reflow.c @@ -47,12 +47,12 @@ #include "config.h" -#include #include #include -#include "e-minicard.h" #include +#include "e-minicard.h" + /* This is a horrible thing to do, but it is just a test. */ GnomeCanvasItem *reflow; GnomeCanvasItem *rect; -- cgit v1.2.3