From 82e3f15856a322824ded1d0840be8f4d9f82e5c2 Mon Sep 17 00:00:00 2001 From: Stefan Taferner Date: Sun, 21 Dec 1997 20:09:46 +0000 Subject: [PATCH] Fixed a bug in kmmsgbase that causes problems with long subjects / froms. Thanks to J.Sixt who reported the bug ! svn path=/trunk/kdenetwork/kmail/; revision=3580 --- kmmsgbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmmsgbase.cpp b/kmmsgbase.cpp index 53696f02a..10468d9b0 100644 --- a/kmmsgbase.cpp +++ b/kmmsgbase.cpp @@ -167,7 +167,7 @@ const QString KMMsgBase::asIndexString(void) const int i, len; QString str(256); - str.sprintf("%c %-.9lu %-.9lu %-.9lu %-100s %-100s\n", + str.sprintf("%c %-.9lu %-.9lu %-.9lu %-100.100s %-100.100s\n", (char)status(), folderOffset(), msgSize(), (unsigned long)date(), (const char*)decodeQuotedPrintableString(from()), (const char*)decodeQuotedPrintableString(subject()));