aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-08-24 11:04:56 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-08-24 11:04:56 +0800
commit8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670 (patch)
tree4043aa74092de5b49af765485206816c55050172 /shell
parentbc70de1c584ccdb86b3aabfa288c9c79ae989298 (diff)
downloadgsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar
gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar.gz
gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar.bz2
gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar.lz
gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar.xz
gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar.zst
gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.zip
include missing e-error.h
2005-08-23 Not Zed <NotZed@Ximian.com> * e-shell-window-commands.c: include missing e-error.h * e-component-registry.c (query_components): cast away a seemingly spurious warning. svn path=/trunk/; revision=30213
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog7
-rw-r--r--shell/e-component-registry.c2
-rw-r--r--shell/e-shell-window-commands.c1
3 files changed, 9 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index de5b9cb28e..7e95e97e51 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,10 @@
+2005-08-23 Not Zed <NotZed@Ximian.com>
+
+ * e-shell-window-commands.c: include missing e-error.h
+
+ * e-component-registry.c (query_components): cast away a seemingly
+ spurious warning.
+
2005-08-17 Not Zed <NotZed@Ximian.com>
* e-shell.c (impl_Shell_handleURI): fix warning.
diff --git a/shell/e-component-registry.c b/shell/e-component-registry.c
index 2545b21f22..fd820fdbcb 100644
--- a/shell/e-component-registry.c
+++ b/shell/e-component-registry.c
@@ -189,7 +189,7 @@ query_components (EComponentRegistry *registry)
GNOME_Evolution_Component iface;
id = info_list->_buffer[i].iid;
- iface = bonobo_activation_activate_from_id (id, 0, NULL, &ev);
+ iface = bonobo_activation_activate_from_id ((char *)id, 0, NULL, &ev);
if (BONOBO_EX (&ev) || iface == CORBA_OBJECT_NIL) {
char *ex_text = bonobo_exception_get_text (&ev);
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c
index fa91cb7031..2623e2b46a 100644
--- a/shell/e-shell-window-commands.c
+++ b/shell/e-shell-window-commands.c
@@ -33,6 +33,7 @@
#include "e-util/e-icon-factory.h"
#include "e-util/e-dialog-utils.h"
+#include "e-util/e-error.h"
#include <glib/gprintf.h>