diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-24 21:42:59 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-24 21:42:59 +0800 |
commit | 0c3a86937674a6214f68746ee5a273e195228fde (patch) | |
tree | 4570a3885c76a204c4094fd383791883d8ee5df8 /shell/idl | |
parent | ef9238e9cc2d2cd2f7b80fc4afe583e38d4914c7 (diff) | |
download | gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.tar gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.tar.gz gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.tar.bz2 gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.tar.lz gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.tar.xz gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.tar.zst gsoc2013-evolution-0c3a86937674a6214f68746ee5a273e195228fde.zip |
Made some functions syncronous that didn't need to be asyncronous.
2000-04-24 Christopher James Lahey <clahey@helixcode.com>
* idl/folder.idl: Made some functions syncronous that didn't need
to be asyncronous.
svn path=/trunk/; revision=2582
Diffstat (limited to 'shell/idl')
-rw-r--r-- | shell/idl/folder.idl | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/shell/idl/folder.idl b/shell/idl/folder.idl index a3db71410b..4a9850a468 100644 --- a/shell/idl/folder.idl +++ b/shell/idl/folder.idl @@ -38,27 +38,13 @@ module Evolution { void folder_listener_ready (in CallStatus status, in Folder folder); - void respond_get_control (in CallStatus stutus, - in Bonobo::Control control); - /* - * You must know what interface to query_interface() - * for once you get a data source! - */ - void respond_get_data_source (in CallStatus status, - in Bonobo::Unknown data_source); - - void respond_get_name(in CallStatus status, - in string viewable_name); - /* void respond_get_icon(in CallStatus status, - in */ - void respond_add_subfolder (in CallStatus status, in Folder folder); void respond_move_subfolder (in CallStatus status); void respond_delete_subfolder (in CallStatus status); /* This signals that some piece of data has changed. - The name, control or data source has changed. */ + The name or icon has changed. */ void signal_name_changed(in Folder folder); void signal_icon_changed(in Folder folder); @@ -77,16 +63,16 @@ module Evolution { * only the wombat knows how to do that, by surfing * the physical evolution directory structure */ - void get_control(); + Bonobo::control get_control(); /* * You must know what interface to query_interface() * for once you get a data source! */ - void get_data_source(); + Bonobo::Unknown get_data_source(); - void get_name(); - void get_icon(); + char *get_name(); + char *get_icon(); void add_subfolder (in string data_source_id, in string control_id, |