From 9dc6047e2221d412e266e0e47025f41fe526d93e Mon Sep 17 00:00:00 2001 From: Till Adam Date: Thu, 4 Nov 2004 10:41:47 +0000 Subject: [PATCH] Show pictures of people in the addressbook since we hit it anyway trying to figure out online status. Cute. svn path=/trunk/kdepim/; revision=360315 --- csshelper.cpp | 2 +- headerstrategy.cpp | 2 +- headerstyle.cpp | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/csshelper.cpp b/csshelper.cpp index 3d88d916b..2d6762dd4 100644 --- a/csshelper.cpp +++ b/csshelper.cpp @@ -595,7 +595,7 @@ namespace KMail { " border:1px solid black;\n" // FIXME: InfoBackground crashes KHTML //" background-color:InfoBackground;\n" - " background-color:yellow;\n" + " background-color:%5;\n" "}\n\n" "div.senderstatus{\n" diff --git a/headerstrategy.cpp b/headerstrategy.cpp index f2ef6178c..7175e33da 100644 --- a/headerstrategy.cpp +++ b/headerstrategy.cpp @@ -60,7 +60,7 @@ namespace KMail { static const char * richHeaders[] = { "subject", "date", "from", "cc", "bcc", "to", - "organization", "organisation", "reply-to", "status" /*, "statuspic" */ + "organization", "organisation", "reply-to", /* "status" ,*/ "statuspic" }; static const int numRichHeaders = sizeof richHeaders / sizeof *richHeaders; diff --git a/headerstyle.cpp b/headerstyle.cpp index 6530abd53..df42f6665 100644 --- a/headerstyle.cpp +++ b/headerstyle.cpp @@ -436,10 +436,13 @@ namespace KMail { } else userHTML = QString( "
" - "%2
%3
" + "%2
" + "%4
" "
" ).arg( kabcUid ) .arg( userHTML ) + .arg( kabcUid ) .arg( presence ); + kdDebug() << endl << userHTML << endl; } } }