summaryrefslogtreecommitdiff
path: root/user/milou/fix-test-signedness.patch
blob: 373c67bc19f28d1fe473e6243fbf1a5b192d4122 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- milou-5.8.7/lib/test/modeltest.cpp.old	2017-05-23 07:05:02.000000000 -0500
+++ milou-5.8.7/lib/test/modeltest.cpp	2017-10-06 05:05:21.383062040 -0500
@@ -451,7 +451,7 @@
     // Check that the alignment is one we know about
     QVariant textAlignmentVariant = model->data ( model->index ( 0, 0 ), Qt::TextAlignmentRole );
     if ( textAlignmentVariant.isValid() ) {
-        int alignment = textAlignmentVariant.toInt();
+        unsigned int alignment = textAlignmentVariant.toUInt();
         QCOMPARE( alignment, ( alignment & ( Qt::AlignHorizontal_Mask | Qt::AlignVertical_Mask ) ) );
     }