svn commit: r415809 - head/editors/kate/files

Kurt Jaeger pi at FreeBSD.org
Tue May 24 20:14:20 UTC 2016


Author: pi
Date: Tue May 24 20:14:18 2016
New Revision: 415809
URL: https://svnweb.freebsd.org/changeset/ports/415809

Log:
  editors/kate: Fix build with libc++ 3.8.0
  
  PR:		209561
  Submitted by:	dim
  Approved by:	kde

Added:
  head/editors/kate/files/patch-part_view_kateviewhelpers.cpp   (contents, props changed)

Added: head/editors/kate/files/patch-part_view_kateviewhelpers.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/kate/files/patch-part_view_kateviewhelpers.cpp	Tue May 24 20:14:18 2016	(r415809)
@@ -0,0 +1,11 @@
+--- part/view/kateviewhelpers.cpp.orig	2014-10-26 20:17:55 UTC
++++ part/view/kateviewhelpers.cpp
+@@ -1532,7 +1532,7 @@ void KateIconBorder::paintBorder (int /*
+   uint startz = (y / h);
+   uint endz = startz + 1 + (height / h);
+   uint lineRangesSize = m_viewInternal->cache()->viewCacheLineCount();
+-  uint currentLine = m_view->cursorPosition().line();
++  int currentLine = m_view->cursorPosition().line();
+ 
+   // center the folding boxes
+   int m_px = (h - 11) / 2;


More information about the svn-ports-head mailing list