mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
🐛 Fix building with Qt 5.9 (closes #528)
This commit is contained in:
parent
79ba3a28e6
commit
2b6059dee3
1 changed files with 2 additions and 1 deletions
|
@ -448,7 +448,8 @@ void ModelTest::data()
|
||||||
QVariant textAlignmentVariant = model->data ( model->index ( 0, 0 ), Qt::TextAlignmentRole );
|
QVariant textAlignmentVariant = model->data ( model->index ( 0, 0 ), Qt::TextAlignmentRole );
|
||||||
if ( textAlignmentVariant.isValid() ) {
|
if ( textAlignmentVariant.isValid() ) {
|
||||||
int alignment = textAlignmentVariant.toInt();
|
int alignment = textAlignmentVariant.toInt();
|
||||||
QCOMPARE( alignment, ( alignment & ( Qt::AlignHorizontal_Mask | Qt::AlignVertical_Mask ) ) );
|
QCOMPARE( alignment, static_cast<int>( alignment & ( Qt::AlignHorizontal_Mask
|
||||||
|
| Qt::AlignVertical_Mask ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// General Purpose roles that should return a QColor
|
// General Purpose roles that should return a QColor
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue