diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-01 03:04:42 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-01 03:04:42 +0800 |
commit | 83387a7fddc83a28a04c7a649762474ac591b961 (patch) | |
tree | 9773116b63a89601f575be798427d59233854eb0 /shell/Evolution-Shell.idl | |
parent | effe256583bbb6ad82e969070749a859429fd9ff (diff) | |
download | gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.tar gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.tar.gz gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.tar.bz2 gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.tar.lz gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.tar.xz gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.tar.zst gsoc2013-evolution-83387a7fddc83a28a04c7a649762474ac591b961.zip |
add "cancel" to FolderSelectionListener.
* Evolution-Shell.idl: add "cancel" to FolderSelectionListener.
* evolution-shell-client.c (impl_FolderSelectionListener_cancel):
Implement cancel (set *uri and *physical_uri to NULL).
(evolution_shell_client_user_select_folder): document %NULL uri
and physical_uri return values.
* e-shell.c (folder_selection_dialog_clicked_cb): If the user
clicked "Cancel" or used the wm to close the dialog, call _cancel
instead of _selected.
svn path=/trunk/; revision=3831
Diffstat (limited to 'shell/Evolution-Shell.idl')
-rw-r--r-- | shell/Evolution-Shell.idl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/Evolution-Shell.idl b/shell/Evolution-Shell.idl index 9d1542ec26..b1cfaefcc6 100644 --- a/shell/Evolution-Shell.idl +++ b/shell/Evolution-Shell.idl @@ -31,5 +31,6 @@ module Evolution { interface FolderSelectionListener { void selected (in string uri, in string physical_uri); + void cancel (); }; }; |