--- pluginmanager.cpp 2006-12-31 08:30:07.000000000 +0300 +++ pluginmanager_.cpp 2007-01-02 12:59:29.000000000 +0300 @@ -421,8 +421,12 @@ * \param stanza The stanza to be sent. */ void PluginManager::sendStanza( const PsiAccount* account, const QString& stanza) -{ +{ + #if __WORDSIZE == 64 + qDebug(qPrintable(QString("Want to send stanza to account %2").arg((long int)account))); + #else qDebug(qPrintable(QString("Want to send stanza to account %2").arg((int)account))); + #endif if (!clients_.contains(account) || !verifyStanza(stanza)) return; clients_[account]->send(stanza);