remove boost call

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2030 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2010-01-14 00:35:16 +00:00
parent 3863b8c173
commit 37cf2e98a2
3 changed files with 14 additions and 9 deletions

View file

@ -48,8 +48,6 @@
#include <QRegExpValidator>
#include <QRegExp>
#include <boost/lexical_cast.hpp>
#include <QDebug>
#include <sstream>
#include <iostream>
@ -349,9 +347,9 @@ int TextPage::nextId() const {
wizard()->setField(CERT_STRING_FIELD_CONNECT_FRIEND_WIZARD, QString::fromStdString(certstr));
wizard()->setField("ext_friend_ip", QString::fromStdString(pd.extAddr));
wizard()->setField("ext_friend_port", QString::fromStdString(boost::lexical_cast<std::string>(pd.extPort)));
wizard()->setField("ext_friend_port", QString::number(pd.extPort));
wizard()->setField("local_friend_ip", QString::fromStdString(pd.localAddr));
wizard()->setField("local_friend_port", QString::fromStdString(boost::lexical_cast<std::string>(pd.localPort)));
wizard()->setField("local_friend_port", QString::number(pd.localPort));
return ConnectFriendWizard::Page_Conclusion ;
}