Received: by mail.netbsd.org (Postfix, from userid 605) id E8E7084E2D; Thu, 14 May 2020 19:27:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6F69D84E27 for ; Thu, 14 May 2020 19:27:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id UwjGSusVJ_rn for ; Thu, 14 May 2020 19:27:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E897384E24 for ; Thu, 14 May 2020 19:27:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E5B1EFB27; Thu, 14 May 2020 19:27:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158948442177910" MIME-Version: 1.0 Date: Thu, 14 May 2020 19:27:01 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/games/widelands To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200514192701.E5B1EFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158948442177910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu May 14 19:27:01 UTC 2020 Modified Files: pkgsrc/games/widelands: distinfo Added Files: pkgsrc/games/widelands/patches: patch-src_editor_ui__menus_categorized__item__selection__menu.h Log Message: Fix boost::placeholders fallout To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/games/widelands/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/games/widelands/patches/patch-src_editor_ui__menus_categorized__item__selection__menu.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158948442177910 Content-Disposition: inline Content-Length: 2115 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/widelands/distinfo diff -u pkgsrc/games/widelands/distinfo:1.3 pkgsrc/games/widelands/distinfo:1.4 --- pkgsrc/games/widelands/distinfo:1.3 Thu Dec 19 22:16:34 2019 +++ pkgsrc/games/widelands/distinfo Thu May 14 19:27:01 2020 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2019/12/19 22:16:34 joerg Exp $ +$NetBSD: distinfo,v 1.4 2020/05/14 19:27:01 joerg Exp $ SHA1 (widelands-build20.tar.bz2) = a2fdedf81c08fd08809b8556c955a6a7f32c1eed RMD160 (widelands-build20.tar.bz2) = 4adfa2f3ae2e4ceae7a04ca1162deed0f3e7632f @@ -7,3 +7,4 @@ Size (widelands-build20.tar.bz2) = 23236 SHA1 (patch-CMakeLists.txt) = 8b400bc5554964378275d304943e6489c82d9915 SHA1 (patch-src_CMakeLists.txt) = 3d06616eefa3145ff0062c39b4ce026e0acad8c1 SHA1 (patch-src_base_i18n.cc) = ed25d4bafc90c9bc52bb1636824f91b5734ff742 +SHA1 (patch-src_editor_ui__menus_categorized__item__selection__menu.h) = 5f81ded849263f3569d243b952c97e639ac437e1 Added files: Index: pkgsrc/games/widelands/patches/patch-src_editor_ui__menus_categorized__item__selection__menu.h diff -u /dev/null pkgsrc/games/widelands/patches/patch-src_editor_ui__menus_categorized__item__selection__menu.h:1.1 --- /dev/null Thu May 14 19:27:01 2020 +++ pkgsrc/games/widelands/patches/patch-src_editor_ui__menus_categorized__item__selection__menu.h Thu May 14 19:27:01 2020 @@ -0,0 +1,13 @@ +$NetBSD: patch-src_editor_ui__menus_categorized__item__selection__menu.h,v 1.1 2020/05/14 19:27:01 joerg Exp $ + +--- src/editor/ui_menus/categorized_item_selection_menu.h.orig 2020-05-13 21:25:15.373337659 +0000 ++++ src/editor/ui_menus/categorized_item_selection_menu.h +@@ -124,7 +124,7 @@ CategorizedItemSelectionMenuset_state(tool_->is_enabled(i)); +- cb->changedto.connect(boost::bind(&CategorizedItemSelectionMenu::selected, this, i, _1)); ++ cb->changedto.connect(boost::bind(&CategorizedItemSelectionMenu::selected, this, i, boost::placeholders::_1)); + checkboxes_[i] = cb; + horizontal->add(cb); + horizontal->add_space(kSpacing); --_----------=_158948442177910--