summaryrefslogtreecommitdiffabout
path: root/kmicromail
Unidiff
Diffstat (limited to 'kmicromail') (more/less context) (show whitespace changes)
-rw-r--r--kmicromail/libmailwrapper/abstractmail.cpp11
-rw-r--r--kmicromail/libmailwrapper/genericwrapper.cpp16
2 files changed, 16 insertions, 11 deletions
diff --git a/kmicromail/libmailwrapper/abstractmail.cpp b/kmicromail/libmailwrapper/abstractmail.cpp
index 374d606..44878e0 100644
--- a/kmicromail/libmailwrapper/abstractmail.cpp
+++ b/kmicromail/libmailwrapper/abstractmail.cpp
@@ -164,3 +164,3 @@ void AbstractMail::downloadNewMails(const FolderP&fromFolder, AbstractMail*targe
164{ 164{
165 qDebug("AbstractMail::downloadNewMails %s ", fromFolder->getName().latin1()); 165 //qDebug("AbstractMail::downloadNewMails %s ", fromFolder->getName().latin1());
166 // get local folder 166 // get local folder
@@ -186,3 +186,3 @@ void AbstractMail::downloadNewMails(const FolderP&fromFolder, AbstractMail*targe
186 targetMail->listMessages(lfName,e,acc->getMaxMailSize() ); 186 targetMail->listMessages(lfName,e,acc->getMaxMailSize() );
187 qDebug("target has mails %d ", e.count()); 187 //qDebug("target has mails %d ", e.count());
188 QValueList<RecMailP> n; 188 QValueList<RecMailP> n;
@@ -203,7 +203,2 @@ void AbstractMail::downloadNewMails(const FolderP&fromFolder, AbstractMail*targe
203 } 203 }
204 if ( found )
205 qDebug("found ");
206 else
207 qDebug("NOT found ");
208
209 if ( !found ) { 204 if ( !found ) {
@@ -218,3 +213,3 @@ void AbstractMail::downloadNewMails(const FolderP&fromFolder, AbstractMail*targe
218 mvcpMailList( n,lfName,targetMail,!acc->getLeaveOnServer()); 213 mvcpMailList( n,lfName,targetMail,!acc->getLeaveOnServer());
219 214 Global::statusMessage(tr("Downloaded %1 messages").arg(n.count()));
220 215
diff --git a/kmicromail/libmailwrapper/genericwrapper.cpp b/kmicromail/libmailwrapper/genericwrapper.cpp
index 2b04847..ed591fc 100644
--- a/kmicromail/libmailwrapper/genericwrapper.cpp
+++ b/kmicromail/libmailwrapper/genericwrapper.cpp
@@ -48,6 +48,15 @@ QString Genericwrapper::parseDateTime( mailimf_date_time *date )
48 } 48 }
49 QDateTime dt (QDate(date->dt_year,date->dt_month, date->dt_day ),QTime(date->dt_hour, date->dt_min, date->dt_sec ) ); 49 QDate da (date->dt_year,date->dt_month, date->dt_day );
50 QTime ti ( date->dt_hour, date->dt_min, date->dt_sec );
51 QDateTime dt ( da ,ti );
50 int off = KGlobal::locale()->localTimeOffset( dt ); 52 int off = KGlobal::locale()->localTimeOffset( dt );
51 dt = dt.addSecs( off*60 ); 53 //dt = dt.addSecs( off*60 );
52 QString ret = KGlobal::locale()->formatDateTime( dt,true,true); 54 QString ret;
55 if ( da == QDate::currentDate () )
56 ret = KGlobal::locale()->formatTime( ti,true);
57
58 else {
59 ret = KGlobal::locale()->formatDateTime( dt,true,true);
60 }
61#if 0
53 if ( off < 0 ) 62 if ( off < 0 )
@@ -58,2 +67,3 @@ QString Genericwrapper::parseDateTime( mailimf_date_time *date )
58 ret += "h"; 67 ret += "h";
68#endif
59#if 0 69#if 0