diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-04-25 02:10:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-04-25 02:10:25 +0800 |
commit | 5ccf9eef4a0f93c893332d4f72db7cd8f07f229e (patch) | |
tree | e12e636f9612b8341962e12d2d6d39578b45605d /shell | |
parent | 6c5fbc88cceac5bd5c3fbf4b2c9979b56c68946f (diff) | |
download | gsoc2013-evolution-5ccf9eef4a0f93c893332d4f72db7cd8f07f229e.tar.gz gsoc2013-evolution-5ccf9eef4a0f93c893332d4f72db7cd8f07f229e.tar.zst gsoc2013-evolution-5ccf9eef4a0f93c893332d4f72db7cd8f07f229e.zip |
** Fixes bug #433005 (patch from Daniel Gryniewicz)
2007-04-24 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #433005 (patch from Daniel Gryniewicz)
* shell/main.c: #include <gtk/gtkcheckbutton.h>
* widgets/misc/e-task-widget.c: #include "e-spinner.h"
svn path=/trunk/; revision=33455
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/main.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index ab77e076f0..fa1a32043a 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2007-04-24 Matthew Barnes <mbarnes@redhat.com> + + * main.c: #include <gtk/gtkcheckbutton.h> (#433005) + Patch from Daniel Gryniewicz. + 2007-04-23 Srinivasa Ragavan <sragavan@novell.com> * main.c: (main): Fix 2 build breaks if built with development version diff --git a/shell/main.c b/shell/main.c index b6e9c530ce..38b54f499b 100644 --- a/shell/main.c +++ b/shell/main.c @@ -54,6 +54,7 @@ #include <gtk/gtkdialog.h> #include <gtk/gtkstock.h> #include <gtk/gtktogglebutton.h> +#include <gtk/gtkcheckbutton.h> #include <glib/gi18n.h> #include <libgnome/gnome-util.h> |