Skip to content

Commit

Permalink
removed extra column from process list
Browse files Browse the repository at this point in the history
  • Loading branch information
benapetr committed Aug 24, 2014
1 parent 8a57a5d commit 25d64a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion huggle/processlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using namespace Huggle;
ProcessList::ProcessList(QWidget *parent) : QDockWidget(parent), ui(new Ui::ProcessList)
{
this->ui->setupUi(this);
this->ui->tableWidget->setColumnCount(5);
this->ui->tableWidget->setColumnCount(4);
QStringList header;
header << _l("id") << _l("type") << _l("target") << _l("status");
this->ui->tableWidget->setHorizontalHeaderLabels(header);
Expand Down

0 comments on commit 25d64a9

Please sign in to comment.