Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 295862

Summary: Korganizer: Marcus Bains line is not updated
Product: Gentoo Linux Reporter: Sam Iam <academic.sam>
Component: [OLD] KDEAssignee: Gentoo KDE team <kde>
Status: RESOLVED FIXED    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

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