mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
16 lines
480 B
Plaintext
16 lines
480 B
Plaintext
$NetBSD: patch-bd,v 1.2 2012/04/17 20:08:06 bsiegert Exp $
|
|
|
|
See patch-be and patch-bf.
|
|
|
|
--- src/Screen.cc.orig Sat Oct 29 13:45:51 2011
|
|
+++ src/Screen.cc
|
|
@@ -945,7 +945,7 @@ void BScreen::addIcon(FluxboxWindow *w)
|
|
return;
|
|
|
|
// make sure we have a unique list
|
|
- if (find(iconList().begin(), iconList().end(), w) != iconList().end())
|
|
+ if (std::find(iconList().begin(), iconList().end(), w) != iconList().end())
|
|
return;
|
|
|
|
iconList().push_back(w);
|