Remove IsPairedRole
It was not a good idea
This commit is contained in:
parent
e227c61cf8
commit
446dbbc230
2 changed files with 1 additions and 4 deletions
|
@ -170,8 +170,6 @@ QVariant DevicesModel::data(const QModelIndex& index, int role) const
|
||||||
}
|
}
|
||||||
case IconNameRole:
|
case IconNameRole:
|
||||||
return device->iconName();
|
return device->iconName();
|
||||||
case IsPairedRole:
|
|
||||||
return QVariant::fromValue<bool>(device->isPaired());
|
|
||||||
default:
|
default:
|
||||||
return QVariant();
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,8 +44,7 @@ public:
|
||||||
IconModelRole = Qt::DecorationRole,
|
IconModelRole = Qt::DecorationRole,
|
||||||
StatusModelRole = Qt::InitialSortOrderRole,
|
StatusModelRole = Qt::InitialSortOrderRole,
|
||||||
IdModelRole = Qt::UserRole,
|
IdModelRole = Qt::UserRole,
|
||||||
IconNameRole,
|
IconNameRole
|
||||||
IsPairedRole
|
|
||||||
};
|
};
|
||||||
enum StatusFlag {
|
enum StatusFlag {
|
||||||
StatusUnknown = 0x00,
|
StatusUnknown = 0x00,
|
||||||
|
|
Loading…
Reference in a new issue