aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-03-23 00:35:58 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-03-23 00:35:58 +0800
commitf286676ead838f371de0096b6bfd3c46748d84ec (patch)
tree895901d9c2203404c6e14c15d866eccc408d6212 /camel
parent44e1a62c0ca5aede11bb1a5c7551186d7618dadb (diff)
downloadgsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar
gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.gz
gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.bz2
gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.lz
gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.xz
gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.tar.zst
gsoc2013-evolution-f286676ead838f371de0096b6bfd3c46748d84ec.zip
+ * shell/main.c (evolution_boot): gtk_signal_connect'ed "destroy"
+ to gtk_main_quit, so that the shell dies when you want it to. + + * shell/e-shell-view.c (get_view): Reorganized, and added + assertions. + (e_shell_view_set_view): Added assertions. + + * camel/camel-formatter.c (debug): Disabled some useless debug + messaging. svn path=/trunk/; revision=2141
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-formatter.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 0217d22080..8214ed4a8b 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-03-22 Matt Loper <matt@helixcode.com>
+
+ * camel-formatter.c (debug): Disabled some useless debug
+ messaging.
+
2000-03-21 Dan Winship <danw@helixcode.com>
* providers/pop3: some initial bits of the POP3 provider, to
diff --git a/camel/camel-formatter.c b/camel/camel-formatter.c
index b1caf9f6fc..c7fddbfa1e 100644
--- a/camel/camel-formatter.c
+++ b/camel/camel-formatter.c
@@ -102,6 +102,7 @@ struct _CamelFormatterPrivate {
static void
debug (const gchar *format, ...)
{
+#if 0
va_list args;
gchar *string;
@@ -115,6 +116,7 @@ debug (const gchar *format, ...)
fflush (stdout);
g_free (string);
+#endif
}
static void
@@ -152,7 +154,7 @@ void camel_formatter_wrapper_to_html (CamelFormatter* formatter,
data_wrapper->mime_type->type,
data_wrapper->mime_type->subtype);
- g_print ("camel_formatter_wrapper_to_html: entered\n");
+ debug ("camel_formatter_wrapper_to_html: entered\n");
g_assert (formatter && data_wrapper && stream_out);
/* give the root CamelDataWrapper and the stream to the formatter */
@@ -194,7 +196,7 @@ camel_formatter_mime_message_to_html (CamelFormatter* formatter,
CamelStream* header_stream,
CamelStream* body_stream)
{
- g_print ("camel_formatter_mime_message_to_html: entered\n");
+ debug ("camel_formatter_mime_message_to_html: entered\n");
g_assert (formatter != NULL);
g_assert (CAMEL_IS_FORMATTER (formatter));