Skip to content

Commit

Permalink
refactor: remove unused parameter in build step
Browse files Browse the repository at this point in the history
Log:
Change-Id: I5a1ceee13fc6d32c835116a9be8c94520296d332
  • Loading branch information
deepin-mozart committed Jan 11, 2024
1 parent c0ee77e commit 4c9ce69
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ QVariant StepsModel::data(const QModelIndex &index, int role) const
switch (index.column()) {
case kTarget:
return target;
case kPath:
return "";
default:
break;
}
Expand Down Expand Up @@ -94,8 +92,6 @@ QVariant StepsModel::headerData(int section, Qt::Orientation orientation, int ro
switch (section) {
case kTarget:
return QObject::tr("Target");
case kPath:
return QObject::tr("Path");
default:
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ class StepsModel : public QAbstractTableModel
{
kCheckBox,
kTarget,
kPath,
kColumnCount
};

Expand Down

0 comments on commit 4c9ce69

Please sign in to comment.