From kde-commits Mon Oct 12 20:20:17 2009 From: Allen Winter Date: Mon, 12 Oct 2009 20:20:17 +0000 To: kde-commits Subject: KDE/kdepim/kontact/plugins/summary Message-Id: <1255378817.974450.25654.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=125537883616148 SVN commit 1034479 by winterz: add help text and whatsthis to the Configure Summary action. MERGE: none DO_NOT_BACKPORT: new i18n strings M +7 -2 summaryview_part.cpp --- trunk/KDE/kdepim/kontact/plugins/summary/summaryview_part.cpp #1034478:1034479 @@ -65,12 +65,17 @@ initGUI( core ); setDate( QDate::currentDate() ); - connect( mCore, SIGNAL(dayChanged(const QDate&)), - SLOT(setDate(const QDate&)) ); + connect( mCore, SIGNAL(dayChanged(const QDate&)), SLOT(setDate(const QDate&)) ); mConfigAction = new KAction( KIcon( "configure" ), i18n( "&Configure Summary View..." ), this ); actionCollection()->addAction( "summaryview_configure", mConfigAction ); connect( mConfigAction, SIGNAL(triggered(bool)), SLOT(slotConfigure()) ); + mConfigAction->setHelpText( i18n( "Configure the summary view" ) ); + mConfigAction->setWhatsThis( + i18nc( "@info:whatsthis", + "Choosing this will show a dialog where you can select which " + "summaries you want to see and also allow you to configure " + "the summaries to your liking." ) ); setXMLFile( "kontactsummary_part.rc" );