diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2002-06-20 03:18:19 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2002-06-20 03:18:19 +0800 |
commit | 092b3ef2ab9d971c0290126d674c604a6b270e00 (patch) | |
tree | 3a5030fb6e9769ca96f3a6229a1ddd608808662d /shell | |
parent | 31cc3a1eb4762733ff361ba8088d9e4547398156 (diff) | |
download | gsoc2013-evolution-092b3ef2ab9d971c0290126d674c604a6b270e00.tar.gz gsoc2013-evolution-092b3ef2ab9d971c0290126d674c604a6b270e00.tar.zst gsoc2013-evolution-092b3ef2ab9d971c0290126d674c604a6b270e00.zip |
Remove #include <config.h> Same Same gtk_widget_show() all items in the
2002-06-19 Kjartan Maraas <kmaraas@gnome.org>
* e-corba-config-page.h: Remove #include <config.h>
* e-shell-about-box.h: Same
* e-history.h: Same
* e-shell-importer.c: gtk_widget_show() all items in the optionmenu
before showing it.
* e-shell-offline-handler.h: Remove #include <config.h>
* e-shell-settings-dialog.h: Same.
svn path=/trunk/; revision=17235
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 10 | ||||
-rw-r--r-- | shell/e-corba-config-page.h | 4 | ||||
-rw-r--r-- | shell/e-history.h | 4 | ||||
-rw-r--r-- | shell/e-shell-about-box.h | 4 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 2 | ||||
-rw-r--r-- | shell/e-shell-offline-handler.h | 4 | ||||
-rw-r--r-- | shell/e-shell-settings-dialog.h | 4 |
7 files changed, 11 insertions, 21 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 91fc7c6e8c..75016f8c05 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,13 @@ +2002-06-19 Kjartan Maraas <kmaraas@gnome.org> + + * e-corba-config-page.h: Remove #include <config.h> + * e-shell-about-box.h: Same + * e-history.h: Same + * e-shell-importer.c: gtk_widget_show() all items in the optionmenu + before showing it. + * e-shell-offline-handler.h: Remove #include <config.h> + * e-shell-settings-dialog.h: Same. + 2002-05-31 Ettore Perazzoli <ettore@ximian.com> * evolution-storage-set-view.c diff --git a/shell/e-corba-config-page.h b/shell/e-corba-config-page.h index c50334899d..5e3d4276a8 100644 --- a/shell/e-corba-config-page.h +++ b/shell/e-corba-config-page.h @@ -23,10 +23,6 @@ #ifndef _E_CORBA_CONFIG_PAGE_H_ #define _E_CORBA_CONFIG_PAGE_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include "e-config-page.h" #include "Evolution.h" diff --git a/shell/e-history.h b/shell/e-history.h index eecbc0c5f8..8d68c149fd 100644 --- a/shell/e-history.h +++ b/shell/e-history.h @@ -23,10 +23,6 @@ #ifndef _E_HISTORY_H_ #define _E_HISTORY_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include <gnome.h> #ifdef __cplusplus diff --git a/shell/e-shell-about-box.h b/shell/e-shell-about-box.h index 831cfb0916..fc00c8e5e2 100644 --- a/shell/e-shell-about-box.h +++ b/shell/e-shell-about-box.h @@ -23,10 +23,6 @@ #ifndef _E_SHELL_ABOUT_BOX_H_ #define _E_SHELL_ABOUT_BOX_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include <gnome.h> #ifdef __cplusplus diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index ca53f77abc..4e48d41bc4 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -589,7 +589,7 @@ create_plugin_menu (ImportData *data) item = gtk_menu_item_new_with_label (name); g_free (name); - + gtk_widget_show (item); gtk_signal_connect (GTK_OBJECT (item), "activate", GTK_SIGNAL_FUNC (item_selected), data); diff --git a/shell/e-shell-offline-handler.h b/shell/e-shell-offline-handler.h index 3b70e5bd00..ce58dd73a9 100644 --- a/shell/e-shell-offline-handler.h +++ b/shell/e-shell-offline-handler.h @@ -23,10 +23,6 @@ #ifndef _E_SHELL_OFFLINE_HANDLER_H_ #define _E_SHELL_OFFLINE_HANDLER_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include <gtk/gtkobject.h> #include "e-component-registry.h" diff --git a/shell/e-shell-settings-dialog.h b/shell/e-shell-settings-dialog.h index f01ba36855..49f3fb60f3 100644 --- a/shell/e-shell-settings-dialog.h +++ b/shell/e-shell-settings-dialog.h @@ -24,10 +24,6 @@ #ifndef _E_SHELL_SETTINGS_DIALOG_H_ #define _E_SHELL_SETTINGS_DIALOG_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include "e-multi-config-dialog.h" #ifdef __cplusplus |