Fix accidentally renamed variable

Signed-off-by: PandaNinjas <admin@malwarefight.wip.la>
This commit is contained in:
PandaNinjas 2023-06-07 20:03:36 -04:00
parent 534328f16d
commit 886b372ade
No known key found for this signature in database
GPG Key ID: 0BD7553044D47763

View File

@ -45,7 +45,7 @@ QVariant Index::data(const QModelIndex &index, int role) const
switch (role)
{
case Qt::DisplayRole:
if (list.column() == 0) {
if (index.column() == 0) {
return list->humanReadable();
} else {
break;