diff options
author | Bharath Acharya <abharath@novell.com> | 2008-01-11 13:03:35 +0800 |
---|---|---|
committer | Sankarasivasubramanian Pasupathilingam <psankar@src.gnome.org> | 2008-01-11 13:03:35 +0800 |
commit | 6624b02a0d2dbfb7d7266754912b46f56183c8a9 (patch) | |
tree | c3c2055594ee57e24be6e92c1290217a57c8f976 | |
parent | 62410cdb74f310201fea1f175bc6455a3c7b63b0 (diff) | |
download | gsoc2013-evolution-6624b02a0d2dbfb7d7266754912b46f56183c8a9.tar.gz gsoc2013-evolution-6624b02a0d2dbfb7d7266754912b46f56183c8a9.tar.zst gsoc2013-evolution-6624b02a0d2dbfb7d7266754912b46f56183c8a9.zip |
** Fix for bug #508678
2008-01-11 Bharath Acharya <abharath@novell.com>
** Fix for bug #508678
* e-shell-view.c: Included missing header glib/gi18n.h
svn path=/trunk/; revision=34796
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-view.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 6c2999026a..4b7d961540 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2008-01-11 Bharath Acharya <abharath@novell.com> + + ** Fix for bug #508678 + + * e-shell-view.c: Included missing header glib/gi18n.h + 2008-01-11 Changwoo Ryu <cwryu@debian.org> ** Fix for bug #508282 diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index adab0ed60f..532ae0dda6 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -29,6 +29,7 @@ #include <glib.h> #include <gtk/gtkwindow.h> +#include <glib/gi18n.h> #include "e-shell-view.h" #include "e-shell-window.h" |