diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-08 20:55:05 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-03-08 20:55:05 +0800 |
commit | 9618cd2cb63840bd9138519bc52a3afad07590fa (patch) | |
tree | 259fda93de990254e0c3a108be88e584b2646b7f /executive-summary | |
parent | 698fc6235d8b59e89369c5220ad6b15cc0c74b81 (diff) | |
download | gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.tar gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.tar.gz gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.tar.bz2 gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.tar.lz gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.tar.xz gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.tar.zst gsoc2013-evolution-9618cd2cb63840bd9138519bc52a3afad07590fa.zip |
Added a ShellComponent method to retrieve the selection for drag and
drop and support for it in the shell. Untested.
svn path=/trunk/; revision=8594
Diffstat (limited to 'executive-summary')
-rw-r--r-- | executive-summary/ChangeLog | 5 | ||||
-rw-r--r-- | executive-summary/component/component-factory.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog index 343838a70f..8911e7154b 100644 --- a/executive-summary/ChangeLog +++ b/executive-summary/ChangeLog @@ -1,3 +1,8 @@ +2001-03-08 Ettore Perazzoli <ettore@ximian.com> + + * component/component-factory.c (factory_fn): Specify a NULL + `EvolutionShellComponentGetDndSelectionFn'. + 2001-02-14 Iain Holmes <iain@ximian.com> * component/e-summary-url.c (e_summary_url_click): Remove the new diff --git a/executive-summary/component/component-factory.c b/executive-summary/component/component-factory.c index 4fba79c420..8036b7b346 100644 --- a/executive-summary/component/component-factory.c +++ b/executive-summary/component/component-factory.c @@ -126,7 +126,7 @@ factory_fn (BonoboGenericFactory *factory, shell_component = evolution_shell_component_new (folder_types, create_view, - NULL, NULL, NULL, NULL, + NULL, NULL, NULL, NULL, NULL, NULL); gtk_signal_connect (GTK_OBJECT (shell_component), "destroy", GTK_SIGNAL_FUNC (factory_destroy), NULL); |