From kde-commits Sun Jul 06 02:48:55 2008 From: Matt Rogers Date: Sun, 06 Jul 2008 02:48:55 +0000 To: kde-commits Subject: KDE/kdenetwork/kopete/protocols/msn Message-Id: <1215312535.200124.2842.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121531254408218 SVN commit 828505 by mattr: Fix bug 165061 The action name was wrong, so we would always open a contact's MSN space when attempting to unblock them (and probably never unblocked them) Patch by John Groszko - Thanks! Fix will be in Kopete 0.60 (KDE 4.1) BUG: 165061 M +1 -1 msncontact.cpp --- trunk/KDE/kdenetwork/kopete/protocols/msn/msncontact.cpp #828504:828505 @@ -145,7 +145,7 @@ //show profile actionShowProfile = new KAction( i18n("Show Profile"), this ); //, "actionShowProfile" ); - connect( actionBlock, SIGNAL(triggered(bool)), this, SLOT(slotShowProfile()) ); + connect( actionShowProfile, SIGNAL(triggered(bool)), this, SLOT(slotShowProfile()) ); // Send mail (only available if it is an hotmail account) actionSendMail = new KAction( KIcon("mail-message-new"), i18n("Send Email..."), this );