X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2FMainwindow.cxx;h=55bc86dd4fca2576bb9fa168ec82e2f8754f87c8;hp=754d5b2b0f1ab244b7932e77f571b14f1abc4d85;hb=10d250c78f36a41d98a6dca768f4e2dafec64e57;hpb=ac5817edcb30c89bc1e5fdcf3a124c3dc2e49630 diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 754d5b2..55bc86d 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -138,7 +138,7 @@ void Mainwindow::renameFunction(QListWidgetItem * item) { RenameFunctionDialog dialog; int result = dialog.exec(); if (QDialog::Accepted == result) { - LOG4CXX_DEBUG(logger, "renaming Function" << item->text().toStdString() + LOG4CXX_DEBUG(logger, "renaming Function " << item->text().toStdString() << " to " << dialog.result().toStdString()); item->setText(dialog.result()); } else {