From 668f49ee87c1b3b51e103ed8bb570a035c96b546 Mon Sep 17 00:00:00 2001 From: zautrix Date: Mon, 07 Mar 2005 18:08:51 +0000 Subject: start datetime fix for float --- (limited to 'libkcal/incidencebase.cpp') diff --git a/libkcal/incidencebase.cpp b/libkcal/incidencebase.cpp index 1e99082..b5fe2e6 100644 --- a/libkcal/incidencebase.cpp +++ b/libkcal/incidencebase.cpp @@ -204,7 +204,9 @@ QString IncidenceBase::dtStartDateStr(bool shortfmt) const QString IncidenceBase::dtStartStr(bool shortfmt) const { - return KGlobal::locale()->formatDateTime(dtStart(), shortfmt); + if ( doesFloat() ) + return KGlobal::locale()->formatDate(dtStart().date(),shortfmt); + return KGlobal::locale()->formatDateTime(dtStart(), shortfmt); } -- cgit v0.9.0.2