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 );