mirror of
https://github.com/rizinorg/cutter.git
synced 2025-02-22 06:33:46 +00:00
Remove some useless output
This commit is contained in:
parent
cc7a6533c0
commit
ad6a357c22
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user