aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
author7 <NotZed@Ximian.com>2001-10-27 09:35:45 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-10-27 09:35:45 +0800
commit128d15489f7ac05d4568115569a6a7a8bd7b8d31 (patch)
tree92d406904898c0bc860838cb20354ed42f6816ca /shell
parenta40ab7c842a5c0ea54c576ee842f65752b9c4861 (diff)
downloadgsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.tar
gsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.tar.gz
gsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.tar.bz2
gsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.tar.lz
gsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.tar.xz
gsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.tar.zst
gsoc2013-evolution-128d15489f7ac05d4568115569a6a7a8bd7b8d31.zip
We want XFER_FOLDER not REMOVE_FOLDER!
2001-10-27 <NotZed@Ximian.com> * evolution-storage.c (impl_Storage_async_xfer_folder): We want XFER_FOLDER not REMOVE_FOLDER! svn path=/trunk/; revision=14193
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/evolution-storage.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 9374d4846c..b6c57ee787 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-27 <NotZed@Ximian.com>
+
+ * evolution-storage.c (impl_Storage_async_xfer_folder): We want
+ XFER_FOLDER not REMOVE_FOLDER!
+
2001-10-26 Ettore Perazzoli <ettore@ximian.com>
* e-shell-offline-handler.c (prepare_for_offline): Remove
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c
index 9fd4288863..a909f8eb79 100644
--- a/shell/evolution-storage.c
+++ b/shell/evolution-storage.c
@@ -320,7 +320,7 @@ impl_Storage_async_xfer_folder (PortableServer_Servant servant,
storage = EVOLUTION_STORAGE (bonobo_object);
obj_dup = CORBA_Object_duplicate (listener, ev);
- gtk_signal_emit (GTK_OBJECT (storage), signals[REMOVE_FOLDER],
+ gtk_signal_emit (GTK_OBJECT (storage), signals[XFER_FOLDER],
obj_dup, source_path, destination_path, remove_source);
}