summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-02-21 22:43:28 (UTC)
committer harlekin <harlekin>2002-02-21 22:43:28 (UTC)
commit7fd3f2ce443a136079bb9230b90b31c8d172b16a (patch) (side-by-side diff)
tree8786464c785def9cc0eaa874dcc10871bde11a64
parentec52599a5a9ca3397e6375b7aeb4ee391c614bfb (diff)
downloadopie-7fd3f2ce443a136079bb9230b90b31c8d172b16a.zip
opie-7fd3f2ce443a136079bb9230b90b31c8d172b16a.tar.gz
opie-7fd3f2ce443a136079bb9230b90b31c8d172b16a.tar.bz2
fixed some layout glitches
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/today.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp
index 1f6f34e..c63a9ef 100644
--- a/core/pim/today/today.cpp
+++ b/core/pim/today/today.cpp
@@ -169,91 +169,91 @@ void Today::getDates()
QString msg;
for ( QValueList<EffectiveEvent>::ConstIterator it=list.begin();
it!=list.end(); ++it ) {
count++;
if ( count <= MAX_LINES_MEET )
{
//cout << time.toString() << endl;
//cout << TimeString::dateString((*it).event().end()) << endl;
// decide if to get all day or only later appointments
if (!ONLY_LATER)
{
msg += "<B>" + (*it).description() + "</B>";
if ( (*it).event().hasAlarm() )
{
msg += " <b>[with alarm]</b>";
}
// include location or not
if (SHOW_LOCATION == 1)
{
msg+= "<BR><i>" + (*it).location();
+ msg += "</i>";
}
- msg += "</i><BR>";
if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") )
{
- msg += "All day";
+ msg += "<br>All day";
}
else
{
// start time of event
- msg += TimeString::timeString(QTime((*it).event().start().time()) )
+ msg += "<br>" + TimeString::timeString(QTime((*it).event().start().time()) )
// end time of event
+ "<b> - </b>" + TimeString::timeString(QTime((*it).event().end().time()) );
}
msg += "<BR>";
// include possible note or not
if (SHOW_NOTES == 1)
{
msg += " <i>note</i>:" +((*it).notes()).mid(0, MAX_CHAR_CLIP) + "<br>";
}
}
else if ((time.toString() <= TimeString::dateString((*it).event().end())) )
{
msg += "<B>" + (*it).description() + "</B>";
if ( (*it).event().hasAlarm() )
{
msg += " <b>[with alarm]</b>";
}
// include location or not
if (SHOW_LOCATION == 1)
{
msg+= "<BR><i>" + (*it).location();
+ msg += "</i>";
}
- msg += "</i><BR>";
if ( (TimeString::timeString(QTime((*it).event().start().time()) ) == "00:00") && (TimeString::timeString(QTime((*it).event().end().time()) ) == "23:59") )
{
- msg += "All day";
+ msg += "<br>All day";
}
else
{
// start time of event
- msg += TimeString::timeString(QTime((*it).event().start().time()) )
+ msg += "<br>" + TimeString::timeString(QTime((*it).event().start().time()) )
// end time of event
+ "<b> - </b>" + TimeString::timeString(QTime((*it).event().end().time()) );
}
msg += "<BR>";
// include possible note or not
if (SHOW_NOTES == 1)
{
msg += " <i>note</i>:" +((*it).notes()).mid(0, MAX_CHAR_CLIP) + "<br>";
}
}
}
}
if (msg.isEmpty())
{
msg = "No more appointments today";
}
DatesField->setText(msg);
}
}
/*
* Parse in the todolist.xml
*/
QList<TodoItem> Today::loadTodo(const char *filename)