aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-01-12 05:53:34 +0800
committerDan Winship <danw@src.gnome.org>2001-01-12 05:53:34 +0800
commit093c24b9a767d2fa5bc29becc70bf935c9d01e7a (patch)
treee669bb52a4a702e57e1082cc0d08cdbdf788d307 /camel/camel-folder.c
parent90c5d146955ef6df3cda20e2c71f96002b4331eb (diff)
downloadgsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.tar
gsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.tar.gz
gsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.tar.bz2
gsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.tar.lz
gsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.tar.xz
gsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.tar.zst
gsoc2013-evolution-093c24b9a767d2fa5bc29becc70bf935c9d01e7a.zip
Fix a locking problem. (One branch of an if statement was returning with
* camel-folder.c (camel_folder_copy_message_to): Fix a locking problem. (One branch of an if statement was returning with the lock still locked.) Also remove the deprecation comments, to match move_message_to. svn path=/trunk/; revision=7409
Diffstat (limited to 'camel/camel-folder.c')
-rw-r--r--camel/camel-folder.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/camel/camel-folder.c b/camel/camel-folder.c
index f13292fdf7..682a4902f0 100644
--- a/camel/camel-folder.c
+++ b/camel/camel-folder.c
@@ -1095,9 +1095,6 @@ copy_message_to (CamelFolder *source, const char *uid, CamelFolder *dest, CamelE
* This copies a message from one folder to another. If the @source and
* @dest folders have the same parent_store, this may be more efficient
* than a camel_folder_append_message().
- *
- * FIXME: This call should be deprecated, as append_message() can determine
- * this information for itself.
**/
void
camel_folder_copy_message_to (CamelFolder *source, const char *uid,
@@ -1107,12 +1104,10 @@ camel_folder_copy_message_to (CamelFolder *source, const char *uid,
g_return_if_fail (CAMEL_IS_FOLDER (dest));
g_return_if_fail (uid != NULL);
- g_warning("CamelFolder.copy_message_to() is a deprecated api");
-
CAMEL_FOLDER_LOCK(source, lock);
if (source->parent_store == dest->parent_store)
- return CF_CLASS (source)->copy_message_to (source, uid, dest, ex);
+ CF_CLASS (source)->copy_message_to (source, uid, dest, ex);
else
copy_message_to (source, uid, dest, ex);