diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-04-12 21:46:10 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-04-12 21:46:10 +0800 |
commit | 73b0317b1fabbb29ae06841c4692a79b80436262 (patch) | |
tree | c521ec9760567d5ccbd6742d5cbb9579a0889e51 /camel/camel-folder-pt-proxy.c | |
parent | 648fd916e997aabb37e8f44987f8bedfeba0d528 (diff) | |
download | gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.tar gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.tar.gz gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.tar.bz2 gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.tar.lz gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.tar.xz gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.tar.zst gsoc2013-evolution-73b0317b1fabbb29ae06841c4692a79b80436262.zip |
+ * art/Makefile.am: Add tigert's contact-dlg-related images.
+
+ * addressbook/contact-editor/e-contact-editor.c (_add_images): Add
+ tigert's images.
+
+ * addressbook/contact-editor/Makefile.am: add EVOLUTION_IMAGES.
+
+ * camel-folder-pt-proxy.c (_folder_open_cb): Print warning message
+ for broken function.
+ (_folder_close_cb): Same.
+
+ * filter-arg.c (filter_arg_edit_value): Return a value.
svn path=/trunk/; revision=2408
Diffstat (limited to 'camel/camel-folder-pt-proxy.c')
-rw-r--r-- | camel/camel-folder-pt-proxy.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/camel/camel-folder-pt-proxy.c b/camel/camel-folder-pt-proxy.c index ac4caaa049..c8575d1dba 100644 --- a/camel/camel-folder-pt-proxy.c +++ b/camel/camel-folder-pt-proxy.c @@ -327,6 +327,11 @@ _folder_open_cb (CamelFolder *folder, _ProxyCbUserData *pud; CamelFuncDef *cb_def; + g_print ("%s: %s(): Bailing. This function is incredibly" + " broken; the \"*pud\" pointer isn't allocated" + " memory anywhere.\n"); + return; + /* transfer the exception information from "ex" to the * client supplied exception (kept in pud->ex) */ camel_exception_xfer (pud->ex, ex); @@ -411,6 +416,11 @@ _folder_close_cb (CamelFolder *folder, _ProxyCbUserData *pud; CamelFuncDef *cb_def; + g_print ("%s: %s(): Bailing. This function is incredibly" + " broken; the \"*pud\" pointer isn't allocated" + " memory anywhere.\n"); + return; + camel_exception_xfer (pud->ex, ex); cb_def = CAMEL_FOLDER_PT_PROXY_CLASS(pud->proxy_folder)->close_cb_def; cb = camel_marshal_create_op (cb_def, |