summaryrefslogtreecommitdiff
path: root/media-gfx/kuickshow/files/kuickshow-0.9.1-gcc6-compile-fix.patch
blob: 82bf2eafd270d0a093646079fb17590673503d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Fixed wrong type of 2nd parameter which wouldn't compile with GCC 6.

https://bugs.gentoo.org/614304

--- a/src/kuickshow.cpp
+++ b/src/kuickshow.cpp
@@ -661,7 +661,7 @@ void KuickShow::performDeleteCurrentImage(QWidget *parent)
     }
 
     tryShowNextImage();
-    fileWidget->del(list, false, false);
+    fileWidget->del(list, 0L, false);
 }
 
 void KuickShow::performTrashCurrentImage(QWidget *parent)