aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-05-18 04:01:24 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-18 04:01:24 +0800
commit684ba995608395db11ab2bc32c9a589ee8e6c3c9 (patch)
tree67c9142190e89294d6e79b39bf6c57808caa9fbd
parent760b0a4e58d9f6a8664051652ca42de572efc040 (diff)
downloadgsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.tar
gsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.tar.gz
gsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.tar.bz2
gsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.tar.lz
gsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.tar.xz
gsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.tar.zst
gsoc2013-evolution-684ba995608395db11ab2bc32c9a589ee8e6c3c9.zip
#include <gtk/gtkvbox.h>
2004-05-17 Jeffrey Stedfast <fejj@novell.com> * main.c: #include <gtk/gtkvbox.h> * e-shell-startup-wizard.c (make_importer_page): Use E_ICON_SIZE_DIALOG svn path=/trunk/; revision=25936
-rw-r--r--shell/ChangeLog7
-rw-r--r--shell/e-shell-startup-wizard.c2
-rw-r--r--shell/main.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 7a2df3b204..1024bb7fdd 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,10 @@
+2004-05-17 Jeffrey Stedfast <fejj@novell.com>
+
+ * main.c: #include <gtk/gtkvbox.h>
+
+ * e-shell-startup-wizard.c (make_importer_page): Use
+ E_ICON_SIZE_DIALOG
+
2004-05-12 Jeffrey Stedfast <fejj@novell.com>
* main.c (main): Call e_icon_factory_shutdown() after
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c
index b659abffa5..56cfbe9c1c 100644
--- a/shell/e-shell-startup-wizard.c
+++ b/shell/e-shell-startup-wizard.c
@@ -736,7 +736,7 @@ make_importer_page (SWData *data)
page->page = glade_xml_get_widget (data->wizard, "import-page");
g_return_val_if_fail (page->page != NULL, NULL);
- pixbuf = e_icon_factory_get_icon ("stock_mail-import", 48);
+ pixbuf = e_icon_factory_get_icon ("stock_mail-import", E_ICON_SIZE_DIALOG);
gnome_druid_page_standard_set_logo (GNOME_DRUID_PAGE_STANDARD (page->page), pixbuf);
g_object_unref (pixbuf);
diff --git a/shell/main.c b/shell/main.c
index e2d561e739..3b67aa7098 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -40,7 +40,7 @@
#include <gconf/gconf-client.h>
#include <gtk/gtkalignment.h>
-#include <gtk/gtkbox.h>
+#include <gtk/gtkvbox.h>
#include <gtk/gtkframe.h>
#include <gtk/gtklabel.h>
#include <gtk/gtkmain.h>