From 8e4fd3f1e861dcebaa853e73b32a8a0603aef793 Mon Sep 17 00:00:00 2001 From: Christoph Egger Date: Tue, 3 Jun 2014 16:50:44 +0200 Subject: [PATCH] remove old garbage --- src/gui/Mainwindow.cxx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 745fd3e..7d6b8d2 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -108,18 +108,7 @@ void Mainwindow::populateSymbolInformation(Function* fun) { QTableWidget * t = new QTableWidget(); t->setColumnCount(3); t->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); - // curBin->for_each_instruction(sym, [&t](long add, std::string bytes, std::string mnemonic) { - // int row = t->rowCount(); - // std::stringstream s; - // t->setRowCount(t->rowCount() + 1); - // s << std::hex << add; - // t->setItem(row,0,new QTableWidgetItem(s.str().c_str())); - // s.str(""); - // s << std::hex; - // for_each(bytes.begin(), bytes.end(), [&s](char c){s << (unsigned int)((unsigned char)c) << ' ';}); - // t->setItem(row,1,new QTableWidgetItem(s.str().c_str())); - // t->setItem(row,2,new QTableWidgetItem(mnemonic.c_str() + 1)); - // }); + w->addTab(t, "Listing"); listWidget->addItem(fun->getName().c_str()); -- 2.39.2