diff --git a/src/cutter.cpp b/src/cutter.cpp index d64c2a0c..5add3a9f 100644 --- a/src/cutter.cpp +++ b/src/cutter.cpp @@ -86,7 +86,6 @@ int CutterCore::getCycloComplex(ut64 addr) } else { - eprintf("qcore->getCycloComplex: no fcn found"); return 0; } } @@ -105,7 +104,6 @@ int CutterCore::getFcnSize(ut64 addr) } else { - eprintf("qcore->getFcnSize: no fcn found"); return 0; } } diff --git a/src/widgets/CommentsWidget.cpp b/src/widgets/CommentsWidget.cpp index 85064223..900b9e29 100644 --- a/src/widgets/CommentsWidget.cpp +++ b/src/widgets/CommentsWidget.cpp @@ -42,7 +42,6 @@ void CommentsWidget::on_commentsTreeWidget_itemDoubleClicked(QTreeWidgetItem *it // Get offset and name of item double clicked CommentDescription comment = item->data(0, Qt::UserRole).value(); - this->main->addDebugOutput(RAddressString(comment.offset) + ": " + comment.name); CutterCore::getInstance()->seek(comment.offset); //CutterCore::getInstance()->seek(comment.offset, comment.name, true); } diff --git a/src/widgets/FunctionsWidget.cpp b/src/widgets/FunctionsWidget.cpp index 09518858..ea459fc5 100644 --- a/src/widgets/FunctionsWidget.cpp +++ b/src/widgets/FunctionsWidget.cpp @@ -451,7 +451,6 @@ void FunctionsWidget::on_actionDisasAdd_comment_triggered() { // Get new function name QString comment = c->getComment(); - this->main->addDebugOutput("Comment: " + comment + " at: " + function.name); // Rename function in r2 core CutterCore::getInstance()->setComment(function.offset, comment); // Seek to new renamed function