summaryrefslogtreecommitdiffstats
path: root/freebsd/applications/filelight/files
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2018-08-06 01:30:47 +0200
committerSlávek Banko <[email protected]>2018-08-06 01:31:02 +0200
commit9010047840d810d9ccba3d00b7943a842e125291 (patch)
tree7698717495c9bc52be2bc8ab526071f3063b466d /freebsd/applications/filelight/files
parentb4f5663d87c16e08aaef66346f4b22eba2de80bd (diff)
downloadtde-packaging-9010047840d810d9ccba3d00b7943a842e125291.tar.gz
tde-packaging-9010047840d810d9ccba3d00b7943a842e125291.zip
FreeBSD: Update for final release R14.0.5r14.0.5
Additional patches due to stricter C++11 in Clang A new mkspec for Clang is used to build TQt Akode is now part of the TDE repository Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'freebsd/applications/filelight/files')
-rw-r--r--freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff13
1 files changed, 13 insertions, 0 deletions
diff --git a/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff b/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff
new file mode 100644
index 000000000..de573e049
--- /dev/null
+++ b/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff
@@ -0,0 +1,13 @@
+diff --git a/src/part/radialMap/map.cpp b/src/part/radialMap/map.cpp
+index 72d105d..e564969 100644
+--- a/src/part/radialMap/map.cpp
++++ b/src/part/radialMap/map.cpp
+@@ -351,7 +351,7 @@ RadialMap::Map::paint( unsigned int scaleFactor )
+ //draw arrow head to indicate undisplayed files/directories
+ TQPointArray pts( 3 );
+ TQPoint pos, cpos = rect.center();
+- int a[3] = { (*it)->start(), (*it)->length(), 0 };
++ unsigned int a[3] = { (*it)->start(), (*it)->length(), 0 };
+
+ a[2] = a[0] + (a[1] / 2); //assign to halfway between
+ if( a[1] > a_max )