aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@HelixCode.com>2001-01-03 08:15:54 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-01-03 08:15:54 +0800
commitef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8 (patch)
treeba2bf60e9d23d5b9165a53c002ef9cc0e7e475e8
parent95279feb147f5370fe1e15d4f6674f0ca7b98a3b (diff)
downloadgsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.tar
gsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.tar.gz
gsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.tar.bz2
gsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.tar.lz
gsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.tar.xz
gsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.tar.zst
gsoc2013-evolution-ef48c6d6b0f84c1bbc5ce8ec666b0a581c9e3cc8.zip
REmove warning, this isn't really deprecated, sigh.
2000-12-29 Not Zed <NotZed@HelixCode.com> * camel-folder.c (camel_folder_move_message_to): REmove warning, this isn't really deprecated, sigh. * camel-mime-utils.c (header_fold): Comment out some debug. svn path=/trunk/; revision=7222
-rw-r--r--camel/ChangeLog7
-rw-r--r--camel/camel-folder.c2
-rw-r--r--camel/camel-mime-utils.c4
3 files changed, 9 insertions, 4 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 0277ee15e1..d6faf67fbb 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,10 @@
+2000-12-29 Not Zed <NotZed@HelixCode.com>
+
+ * camel-folder.c (camel_folder_move_message_to): REmove warning,
+ this isn't really deprecated, sigh.
+
+ * camel-mime-utils.c (header_fold): Comment out some debug.
+
2001-01-02 Christopher James Lahey <clahey@helixcode.com>
* providers/maildir/, providers/mbox/, providers/mh/: Removed
diff --git a/camel/camel-folder.c b/camel/camel-folder.c
index 5be28274c6..63a5992141 100644
--- a/camel/camel-folder.c
+++ b/camel/camel-folder.c
@@ -1162,8 +1162,6 @@ camel_folder_move_message_to (CamelFolder *source, const char *uid,
g_return_if_fail (CAMEL_IS_FOLDER (dest));
g_return_if_fail (uid != NULL);
- g_warning("CamelFolder.move_message_to() is a deprecated api");
-
CAMEL_FOLDER_LOCK(source, lock);
if (source->parent_store == dest->parent_store)
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index c5616ca05c..04fd6c119b 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -3149,9 +3149,9 @@ header_fold(const char *in, int headerlen)
} else {
len = strlen(inptr);
}
- printf("next word '%.*s'\n", len, inptr);
+ d(printf("next word '%.*s'\n", len, inptr));
if (outlen + len > CAMEL_FOLD_SIZE) {
- printf("outlen = %d wordlen = %d\n", outlen, len);
+ d(printf("outlen = %d wordlen = %d\n", outlen, len));
g_string_append(out, "\n\t");
outlen = 1;
/* check for very long words, just cut them up */