X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2FMainwindow.cxx;h=5931a834f47bf69f8ce3764d438e46510098b386;hp=9f1d353ab2a568c14609c051133ebf87143e62ce;hb=1b95144814ee74e611fd8a3806e54f064b120460;hpb=cb4e14fde0ee90cf5986f2a15b95acb98b04045c diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 9f1d353..5931a83 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -137,8 +137,11 @@ namespace { block->getEndAddress(), [&](uint8_t* bytes, size_t byte_count, - const std::string& line) { - widget->addItem(bytes, byte_count, line.c_str() + 1); + const std::string& line, + const std::string& ref) { + widget->addItem(bytes, byte_count, + line.c_str() + 1, // remove \t + ref.c_str()); }); BasicBlockWidget *tmp, *nextl(NULL), *nextr(NULL);