diff options
author | bertrand <bertrand@helixcode.com> | 2000-03-13 14:53:48 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-13 14:53:48 +0800 |
commit | 2a3293368b73945c2b55f160745cb2d98b4bcee6 (patch) | |
tree | 7c2be12687a8118347cf5b4ceb6cb3b1480913ae /shell | |
parent | 470823e288099d4409b81fb18fadea77b2c49e11 (diff) | |
download | gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.tar gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.tar.gz gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.tar.bz2 gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.tar.lz gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.tar.xz gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.tar.zst gsoc2013-evolution-2a3293368b73945c2b55f160745cb2d98b4bcee6.zip |
i2000-03-13 bertrand <bertrand@helixcode.com>
* folder-browser-factory.c (folder_browser_set_shell):
for testing and demonstration purpose, immediately
register a fake service.
2000-03-13 bertrand <bertrand@helixcode.com>
* shell/e-shell.c (EShell_register_service):
test implementation. Show the uri and the type
of service that has just been registered.
Test the registering mechanism. Actually seems to work well.
svn path=/trunk/; revision=2112
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index ec383746f0..f706723f37 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -132,7 +132,21 @@ EShell_register_service (PortableServer_Servant servant, const CORBA_char *uri, CORBA_Environment *ev) { - printf ("toto\n"); + char *service_type_desc = NULL; + + switch (type) { + + case Evolution_Shell_MAIL_STORE : + service_type_desc = "store"; + break; + case Evolution_Shell_MAIL_TRANSPORT : + service_type_desc = "transport"; + break; + default : + service_type_desc = "service of unknown type"; + } + + printf ("A component has registered a %s with uri \"%s\"\n", service_type_desc, uri); } |