corrected bug in networkview

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3775 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2010-11-10 20:18:53 +00:00
parent ae4f43d9e8
commit e5ce0c5877
3 changed files with 23 additions and 5 deletions

View file

@ -65,6 +65,7 @@
Node::Node(const std::string& node_string,GraphWidget::NodeType type,GraphWidget::AuthType auth,GraphWidget *graphWidget,const std::string& ssl_id,const std::string& gpg_id)
: graph(graphWidget),_desc_string(node_string),_type(type),_auth(auth),_ssl_id(ssl_id),_gpg_id(gpg_id)
{
std::cerr << "Created node type " << type << ", string=" << node_string << std::endl ;
setFlag(ItemIsMovable);
#if QT_VERSION >= 0x040600
setFlag(ItemSendsGeometryChanges);