svn commit: r478439 - head/deskutils/kdepim-kde4/files

Adriaan de Groot adridg at FreeBSD.org
Thu Aug 30 09:57:21 UTC 2018


Author: adridg
Date: Thu Aug 30 09:57:20 2018
New Revision: 478439
URL: https://svnweb.freebsd.org/changeset/ports/478439

Log:
  Fix build with clang7.
  
  PR:		230941
  Reported by:	jbeich

Added:
  head/deskutils/kdepim-kde4/files/patch-korganizer_kodaymatrix.cpp   (contents, props changed)

Added: head/deskutils/kdepim-kde4/files/patch-korganizer_kodaymatrix.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kdepim-kde4/files/patch-korganizer_kodaymatrix.cpp	Thu Aug 30 09:57:20 2018	(r478439)
@@ -0,0 +1,11 @@
+--- korganizer/kodaymatrix.cpp.orig	2018-08-30 09:44:00 UTC
++++ korganizer/kodaymatrix.cpp
+@@ -862,7 +862,7 @@ void KODayMatrix::paintEvent( QPaintEven
+       p.setPen( actcol );
+     }
+     // reset bold font to plain font
+-    if ( mEvents.contains( mDays[i] ) > 0 ) {
++    if ( mEvents.contains( mDays[i] ) ) {
+       QFont myFont = font();
+       myFont.setBold( false );
+       p.setFont( myFont );


More information about the svn-ports-all mailing list