aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-06-30 04:31:40 +0800
committerDan Winship <danw@src.gnome.org>2000-06-30 04:31:40 +0800
commit01166c4fa27c2c58115c2977f0f7fb2364ea4517 (patch)
tree4a4ebe6833f273879adb900911ffb3cb5420f6b7 /mail
parent3649d5dc6d7279d6c218d241232dea73c5c773d2 (diff)
downloadgsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.tar
gsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.tar.gz
gsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.tar.bz2
gsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.tar.lz
gsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.tar.xz
gsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.tar.zst
gsoc2013-evolution-01166c4fa27c2c58115c2977f0f7fb2364ea4517.zip
remove some code incorrectly copied and pasted from create_vfolder_storage
* component-factory.c (create_imap_storage, create_news_storage): remove some code incorrectly copied and pasted from create_vfolder_storage which caused vfolder creation to stop working. svn path=/trunk/; revision=3804
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/component-factory.c6
2 files changed, 7 insertions, 6 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index d4df3feef1..04f2e4696a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2000-06-29 Dan Winship <danw@helixcode.com>
+
+ * component-factory.c (create_imap_storage, create_news_storage):
+ remove some code incorrectly copied and pasted from
+ create_vfolder_storage which caused vfolder creation to stop
+ working.
+
2000-06-29 Christopher James Lahey <clahey@helixcode.com>
* message-list.c, mail-ops.c: Changed the name of
diff --git a/mail/component-factory.c b/mail/component-factory.c
index c6d6f47e19..deb33b8a22 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -324,9 +324,6 @@ create_imap_storage (EvolutionShellComponent *shell_component)
return;
}
- /* save the storage for later */
- gtk_object_set_data (GTK_OBJECT (shell_component), "e-storage", storage);
-
ii = g_new( struct create_info_s, 1 );
ii->storage = storage;
ii->source = g_strdup( source );
@@ -447,9 +444,6 @@ create_news_storage (EvolutionShellComponent *shell_component)
return;
}
- /* save the storage for later */
- gtk_object_set_data (GTK_OBJECT (shell_component), "e-storage", storage);
-
ni = g_new( struct create_info_s, 1 );
ni->storage = storage;
ni->source = g_strdup( source );