diff options
author | Not Zed <NotZed@Ximian.com> | 2005-08-24 11:04:56 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-08-24 11:04:56 +0800 |
commit | 8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670 (patch) | |
tree | 4043aa74092de5b49af765485206816c55050172 /shell/e-component-registry.c | |
parent | bc70de1c584ccdb86b3aabfa288c9c79ae989298 (diff) | |
download | gsoc2013-evolution-8536e7f1c0d7935d4e5cfa629f6fd24c14f0b670.tar.gz 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/e-component-registry.c')
-rw-r--r-- | shell/e-component-registry.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |