Remove some useless output

This commit is contained in:
Florian Märkl 2017-11-26 22:57:57 +01:00
parent cc7a6533c0
commit ad6a357c22
3 changed files with 0 additions and 4 deletions

View File

@ -86,7 +86,6 @@ int CutterCore::getCycloComplex(ut64 addr)
} }
else else
{ {
eprintf("qcore->getCycloComplex: no fcn found");
return 0; return 0;
} }
} }
@ -105,7 +104,6 @@ int CutterCore::getFcnSize(ut64 addr)
} }
else else
{ {
eprintf("qcore->getFcnSize: no fcn found");
return 0; return 0;
} }
} }

View File

@ -42,7 +42,6 @@ void CommentsWidget::on_commentsTreeWidget_itemDoubleClicked(QTreeWidgetItem *it
// Get offset and name of item double clicked // Get offset and name of item double clicked
CommentDescription comment = item->data(0, Qt::UserRole).value<CommentDescription>(); CommentDescription comment = item->data(0, Qt::UserRole).value<CommentDescription>();
this->main->addDebugOutput(RAddressString(comment.offset) + ": " + comment.name);
CutterCore::getInstance()->seek(comment.offset); CutterCore::getInstance()->seek(comment.offset);
//CutterCore::getInstance()->seek(comment.offset, comment.name, true); //CutterCore::getInstance()->seek(comment.offset, comment.name, true);
} }

View File

@ -451,7 +451,6 @@ void FunctionsWidget::on_actionDisasAdd_comment_triggered()
{ {
// Get new function name // Get new function name
QString comment = c->getComment(); QString comment = c->getComment();
this->main->addDebugOutput("Comment: " + comment + " at: " + function.name);
// Rename function in r2 core // Rename function in r2 core
CutterCore::getInstance()->setComment(function.offset, comment); CutterCore::getInstance()->setComment(function.offset, comment);
// Seek to new renamed function // Seek to new renamed function