From kde-commits Thu Feb 07 03:52:36 2008 From: Matt Rogers Date: Thu, 07 Feb 2008 03:52:36 +0000 To: kde-commits Subject: KDE/kdenetwork/kopete/protocols/msn Message-Id: <1202356356.921883.31662.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=120235637006418 SVN commit 771864 by mattr: Fix wrong signal signatures. Patch by Carlo Segato. Thanks! BUG: 156935 M +2 -2 msnchatsession.cpp M +1 -1 msnchatsession.h M +1 -1 msnprotocol.h --- trunk/KDE/kdenetwork/kopete/protocols/msn/msnchatsession.cpp #771863:771864 @@ -75,8 +75,8 @@ this, SLOT( slotMessageSent( Kopete::Message&, Kopete::ChatSession* ) ) ); - connect( this, SIGNAL( invitation(MSNInvitation*& , const QString & , long unsigned int , MSNChatSession* , MSNContact* ) ) , - protocol, SIGNAL( invitation(MSNInvitation*& , const QString & , long unsigned int , MSNChatSession* , MSNContact* ) ) ); + connect( this, SIGNAL( invitation(MSNInvitation*& , const QString & , unsigned long int , MSNChatSession* , MSNContact* ) ) , + protocol, SIGNAL( invitation(MSNInvitation*& , const QString & , unsigned long int , MSNChatSession* , MSNContact* ) ) ); m_actionInvite = new KActionMenu( KIcon("kontact_contacts"), i18n( "&Invite" ), this ); --- trunk/KDE/kdenetwork/kopete/protocols/msn/msnchatsession.h #771863:771864 @@ -134,7 +134,7 @@ /* * This signal is relayed to the protocol and after, to plugins */ - void invitation(MSNInvitation*& invitation, const QString &bodyMSG , long unsigned int cookie , MSNChatSession* msnMM , MSNContact* c ); + void invitation(MSNInvitation*& invitation, const QString &bodyMSG , unsigned long int cookie , MSNChatSession* msnMM , MSNContact* c ); }; #endif // MSNCHATSESSION_H --- trunk/KDE/kdenetwork/kopete/protocols/msn/msnprotocol.h #771863:771864 @@ -172,7 +172,7 @@ * @param msnMM is the message manager * @param c is the contact */ - void invitation(MSNInvitation*& invitation, const QString &bodyMSG , long unsigned int cookie , MSNChatSession* msnMM , MSNContact* c ); + void invitation(MSNInvitation*& invitation, const QString &bodyMSG , unsigned long int cookie , MSNChatSession* msnMM , MSNContact* c ); }; #endif