Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 295862 - Korganizer: Marcus Bains line is not updated
Summary: Korganizer: Marcus Bains line is not updated
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-05 15:12 UTC by Sam Iam
Modified: 2010-04-08 23:24 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sam Iam 2009-12-05 15:12:45 UTC
When you enable Marcus Bains line, it shows the current time, but doesn't get updated. Enable "show seconds" in Configure->Views->Agenda View to see this easily. This happened on KDE 4.3.3 and was reported upstream on Nov. 11. But, was not fixed in 4.3.4.

Following one line change fixed it for me (4.3.4).


--- korganizer/views/agendaview/koagenda.cpp.orig       2009-12-04 11:34:01.000000000 -0500
+++ korganizer/views/agendaview/koagenda.cpp    2009-12-04 11:43:51.000000000 -0500
@@ -72,7 +72,7 @@

   mTimer = new QTimer( this );
   mTimer->setSingleShot( true );
-  connect( mTimer, SIGNAL(timeout()), this, SLOT(updateLocation(bool)) );
+  connect( mTimer, SIGNAL(timeout()), this, SLOT(updateLocation()) );
   mTimer->start( 0 );

   mOldTodayCol = -1;
Comment 1 Andreas K. Hüttel archtester gentoo-dev 2010-04-08 23:24:10 UTC
Fixed in KDE 4.4, see
https://bugs.kde.org/show_bug.cgi?id=222341
https://bugs.kde.org/show_bug.cgi?id=217982