[libcalamares] Drop superfluous enum

This commit is contained in:
Adriaan de Groot 2019-12-10 17:42:32 +06:30
parent 9a5e614172
commit da277fa7ba
2 changed files with 2 additions and 7 deletions

View file

@ -178,7 +178,7 @@ TZRegionModel::rowCount( const QModelIndex& parent ) const
QVariant
TZRegionModel::data( const QModelIndex& index, int role ) const
{
if ( ( role != LabelRole ) && ( role != Qt::UserRole ) )
if ( ( role != Qt::DisplayRole ) && ( role != Qt::UserRole ) )
{
return QVariant();
}
@ -189,7 +189,7 @@ TZRegionModel::data( const QModelIndex& index, int role ) const
}
const TZRegion* region = m_regions.at( index.row() );
return role == LabelRole ? region->tr() : region->key();
return role == Qt::DisplayRole ? region->tr() : region->key();
}
const TZRegion*

View file

@ -84,11 +84,6 @@ public:
class DLLEXPORT TZRegionModel : public QAbstractListModel
{
public:
enum
{
LabelRole = Qt::DisplayRole
};
/// @brief Create empty model (useless)
TZRegionModel();
virtual ~TZRegionModel() override;