aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Leach <jleach@ximian.com>2001-07-25 23:08:11 +0800
committerJacob Leach <jleach@src.gnome.org>2001-07-25 23:08:11 +0800
commit4de97d0b5b879eaa578ee8340ada081f3dd9df03 (patch)
treef5f311dfa2359421898ade7715887c2a39244ae8
parent6de1fcbf3a5606a0586c22df56a4cfa942bab218 (diff)
downloadgsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.tar
gsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.tar.gz
gsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.tar.bz2
gsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.tar.lz
gsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.tar.xz
gsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.tar.zst
gsoc2013-evolution-4de97d0b5b879eaa578ee8340ada081f3dd9df03.zip
#include <libgnome/gnome-defs.h> and <libgnome/gnome-i18n.h> instead of
2001-07-25 Jason Leach <jleach@ximian.com> * e-task-widget.c: #include <libgnome/gnome-defs.h> and <libgnome/gnome-i18n.h> instead of the full <libgnome/libgnome.h>, as noted by a comment here. svn path=/trunk/; revision=11397
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/e-task-widget.c5
2 files changed, 9 insertions, 4 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index ba43e4c7ec..85ddb6da8f 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,9 +1,15 @@
+2001-07-25 Jason Leach <jleach@ximian.com>
+
+ * e-task-widget.c: #include <libgnome/gnome-defs.h> and
+ <libgnome/gnome-i18n.h> instead of the full <libgnome/libgnome.h>,
+ as noted by a comment here.
+
2001-07-24 Jason Leach <jleach@ximian.com>
* e-storage-set-view.c (e_storage_set_view_construct): Add the
"/My Evolution" path to the path_to_etree_node hash so that
storage_set_view_set_current_folder() can select the My Evolution
- node when it's the current one. Fixes #5114 and #3956.
+ node when it's the current one. Fixes #5114 and #3956.
2001-07-23 Ettore Perazzoli <ettore@ximian.com>
diff --git a/shell/e-task-widget.c b/shell/e-task-widget.c
index 53cdb70a6d..3cd2d319b2 100644
--- a/shell/e-task-widget.c
+++ b/shell/e-task-widget.c
@@ -32,9 +32,8 @@
#include <gtk/gtklabel.h>
#include <gtk/gtkpixmap.h>
-/* HA HA. Just #including <libgnome/gnome-i18n.h> doesn't seem to work, so
- I'll have to include the full thing. */
-#include <libgnome/libgnome.h>
+#include <libgnome/gnome-defs.h>
+#include <libgnome/gnome-i18n.h>
#include <gal/util/e-util.h>