diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-03-04 15:05:51 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-03-04 15:05:51 -0600 |
commit | aa78da47b45ff1d7016d79400253a6e45b265ebe (patch) | |
tree | 027ff1920d0abf697389303ef04aaaa3d87ff708 /user/milou/fix-test-signedness.patch | |
parent | cd8822ac3987a2f52dc313081ade2bf631954d92 (diff) | |
download | packages-aa78da47b45ff1d7016d79400253a6e45b265ebe.tar.gz packages-aa78da47b45ff1d7016d79400253a6e45b265ebe.tar.bz2 packages-aa78da47b45ff1d7016d79400253a6e45b265ebe.tar.xz packages-aa78da47b45ff1d7016d79400253a6e45b265ebe.zip |
user/[Plasma]: bump to 5.12.2
Diffstat (limited to 'user/milou/fix-test-signedness.patch')
-rw-r--r-- | user/milou/fix-test-signedness.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/user/milou/fix-test-signedness.patch b/user/milou/fix-test-signedness.patch deleted file mode 100644 index 373c67bc1..000000000 --- a/user/milou/fix-test-signedness.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- 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 ) ) ); - } - |