mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 02:45:44 -05:00
[libcalamares] Drop superfluous enum
This commit is contained in:
parent
9a5e614172
commit
da277fa7ba
2 changed files with 2 additions and 7 deletions
|
@ -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*
|
||||
|
|
|
@ -84,11 +84,6 @@ public:
|
|||
class DLLEXPORT TZRegionModel : public QAbstractListModel
|
||||
{
|
||||
public:
|
||||
enum
|
||||
{
|
||||
LabelRole = Qt::DisplayRole
|
||||
};
|
||||
|
||||
/// @brief Create empty model (useless)
|
||||
TZRegionModel();
|
||||
virtual ~TZRegionModel() override;
|
||||
|
|
Loading…
Add table
Reference in a new issue