mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-08 06:32:55 -04:00
suppressed debug info
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3832 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
61e7cf234c
commit
8f9a54544d
2 changed files with 14 additions and 1 deletions
|
@ -65,7 +65,9 @@
|
|||
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)
|
||||
{
|
||||
#ifdef DEBUG_ELASTIC
|
||||
std::cerr << "Created node type " << type << ", string=" << node_string << std::endl ;
|
||||
#endif
|
||||
setFlag(ItemIsMovable);
|
||||
#if QT_VERSION >= 0x040600
|
||||
setFlag(ItemSendsGeometryChanges);
|
||||
|
@ -296,7 +298,9 @@ void Node::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|||
|
||||
void Node::peerDetails()
|
||||
{
|
||||
#ifdef DEBUG_ELASTIC
|
||||
std::cerr << "Calling peer details" << std::endl;
|
||||
#endif
|
||||
ConfCertDialog::showIt(_gpg_id, ConfCertDialog::PageDetails);
|
||||
}
|
||||
void Node::makeFriend()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue