]> git.siccegge.de Git - frida/frida.git/blobdiff - src/gui/Mainwindow.cxx
Add option to comment on instructions (in GUI)
[frida/frida.git] / src / gui / Mainwindow.cxx
index 70d31d509c33abf939ca44d9eef15f57eaebe7e5..18dcc8bef99f180c7a193962a2ac674709b9de75 100644 (file)
@@ -4,7 +4,7 @@
 
 #include "widgets/CFGScene.hxx"
 #include "dialogs/NewFunctionDialog.hxx"
-#include "dialogs/RenameFunctionDialog.hxx"
+#include "dialogs/SimpleStringDialog.hxx"
 
 #include <sstream>
 
@@ -140,7 +140,7 @@ void Mainwindow::requestNewFunctionByAddress(uint64_t address) {
 }
 
 void Mainwindow::renameFunction(QListWidgetItem * item) {
-       RenameFunctionDialog dialog;
+       SimpleStringDialog dialog("New name");
        int result = dialog.exec();
        if (QDialog::Accepted == result) {
                LOG4CXX_DEBUG(logger, "renaming Function " << item->text().toStdString()