1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Add a patch to allow building with libc++ r224926

PR:		ports/196604
Submitted by:	dim@
This commit is contained in:
Antoine Brodin 2015-01-08 20:48:09 +00:00
parent 5b97ef304d
commit b4b9dbecd3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376569

View File

@ -0,0 +1,11 @@
--- gui/eventmanager.h.orig 2005-04-01 04:08:57 UTC
+++ gui/eventmanager.h
@@ -80,7 +80,7 @@ class KrEventManager
int keysym;
KrWidget* target;
- bool operator==( const Accel& rhs ) { return rhs.target == target; }
+ bool operator==( const Accel& rhs ) const { return rhs.target == target; }
};
KrEventManager();