aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-15 03:52:24 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-15 03:52:24 +0800
commit68d4a4cc4011e06b28ec744534e6da28bb6e9757 (patch)
treebf91f1f445bdb19d9f29cd19e3498b6677f3db27 /composer
parent475660b19f9536f63cf68eab6fef741235b46a2d (diff)
downloadgsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.tar
gsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.tar.gz
gsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.tar.bz2
gsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.tar.lz
gsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.tar.xz
gsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.tar.zst
gsoc2013-evolution-68d4a4cc4011e06b28ec744534e6da28bb6e9757.zip
Made it so that carriage return doesn't insert a newline in the subject
2000-12-14 Christopher James Lahey <clahey@helixcode.com> * e-msg-composer-hdrs.c (add_header): Made it so that carriage return doesn't insert a newline in the subject entry. svn path=/trunk/; revision=7024
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-msg-composer-hdrs.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 9d404d1dd5..89017fad6e 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-14 Christopher James Lahey <clahey@helixcode.com>
+
+ * e-msg-composer-hdrs.c (add_header): Made it so that carriage
+ return doesn't insert a newline in the subject entry.
+
2000-12-12 Jeffrey Stedfast <fejj@helixcode.com>
* e-msg-composer-hdrs.c (set_entry): Don't convert the utf-8
diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c
index 647ba2b3f1..6afcf1d6e2 100644
--- a/composer/e-msg-composer-hdrs.c
+++ b/composer/e-msg-composer-hdrs.c
@@ -260,6 +260,7 @@ add_header (EMsgComposerHdrs *hdrs,
gtk_object_set(GTK_OBJECT(entry),
"editable", TRUE,
"use_ellipsis", TRUE,
+ "allow_newlines", FALSE,
NULL);
}