summaryrefslogtreecommitdiff
path: root/wm/fluxbox/patches
diff options
context:
space:
mode:
authorjoerg <joerg>2013-04-30 22:31:02 +0000
committerjoerg <joerg>2013-04-30 22:31:02 +0000
commitdc8c3f357950fc2071642d7bc4268f827b8421b2 (patch)
tree06e63efa187efd66220282c6f8fa04c5727593ed /wm/fluxbox/patches
parent6ed2b82f41442fc2ed6f4fb54b635779f2419a1f (diff)
downloadpkgsrc-dc8c3f357950fc2071642d7bc4268f827b8421b2.tar.gz
Match constness of other argument.
Diffstat (limited to 'wm/fluxbox/patches')
-rw-r--r--wm/fluxbox/patches/patch-ac13
1 files changed, 11 insertions, 2 deletions
diff --git a/wm/fluxbox/patches/patch-ac b/wm/fluxbox/patches/patch-ac
index 3a0e966fb70..9e7689389ee 100644
--- a/wm/fluxbox/patches/patch-ac
+++ b/wm/fluxbox/patches/patch-ac
@@ -1,6 +1,6 @@
-$NetBSD: patch-ac,v 1.12 2013/02/27 18:06:39 jperkin Exp $
+$NetBSD: patch-ac,v 1.13 2013/04/30 22:31:02 joerg Exp $
---- src/fluxbox.cc.orig Sat Oct 29 13:45:51 2011
+--- src/fluxbox.cc.orig 2013-04-30 20:22:28.000000000 +0000
+++ src/fluxbox.cc
@@ -1077,7 +1077,7 @@ void Fluxbox::saveWindowSearchGroup(Wind
}
@@ -11,3 +11,12 @@ $NetBSD: patch-ac,v 1.12 2013/02/27 18:06:39 jperkin Exp $
}
+@@ -1341,7 +1341,7 @@ bool Fluxbox::validateClient(const WinCl
+ WinClientMap::const_iterator it =
+ find_if(m_window_search.begin(),
+ m_window_search.end(),
+- Compose(bind2nd(equal_to<WinClient *>(), client),
++ Compose(bind2nd(equal_to<const WinClient *>(), client),
+ Select2nd<WinClientMap::value_type>()));
+ return it != m_window_search.end();
+ }