2016-03-11 Murray Cumming 2.7.2 2016-03-11 Murray Cumming test_accumulated(): Restructure this. To make it clearer and to keep the small tests more self-contained and separate. 2016-03-11 Murray Cumming test_signal: Add test_simple(). 2016-03-11 Murray Cumming test_signal(): Restructure this. To make it clearer and to keep the small tests more self-contained and separate. 2016-03-11 Murray Cumming test_slot(): Restructure this. To make it clearer and to keep the small tests more self-contained and separate. 2016-03-10 Murray Cumming signal: make_slot(): Use non-deprecated constructor. 2016-03-10 Murray Cumming tests: Prefer the non-deprecated mem_fun(reference, func) form. 2016-03-10 Murray Cumming tests: Use std::ref() instead of deprecated sigc::ref(). 2016-03-10 Murray Cumming examples: Don't use deprecated mem_fun(pointer, func). 2016-03-10 Murray Cumming examples build: Disable deprecated API. 2016-03-10 Murray Cumming mem_fun(): Deprecate mem_fun(pointer, func). Leaving just mem_fun(reference, func). See bug #763215 The deprecated mem_fun() has been removed from libsigc+--3.0, so this is a chance to adapt code before switching to libsigc++-3.0. 2016-03-10 Chun-wei Fan MSVC builds: Update sigc++ project Add the new source files and headers from adaptors/lambda, and re-order the source files list into alphabetical order. 2016-03-08 Murray Cumming Also ifdef out bound_argument. And add a specialization for bound_argument. 2016-03-08 Murray Cumming reference_wrapper: Include . 2016-03-08 Murray Cumming Deprecate sigc::ref() in favor of std::ref(). 2016-03-07 Murray Cumming .doap: Correct the web site URL. Though we really must stop using sourceforge even for the web site. 2016-03-07 Murray Cumming Rename our .doap file. 2016-03-07 Murray Cumming Fix tiny typo in a comment. 2016-03-06 Murray Cumming docs: Refer to it as libsigc++, not libsigc++2. 2016-03-06 Murray Cumming website/README: Mention the new git repository. 2016-03-03 Murray Cumming SIGC_CXX_HAS_SUN_REVERSE_ITERATOR: Add std:: now that I removed the using std. See https://bugzilla.gnome.org/show_bug.cgi?id=762065#c2 2016-03-03 Murray Cumming C++11: Make all operator bool() explicit. 2016-03-03 Murray Cumming Remove now-unnecessary SIGC_CXX_HAS_NAMESPACE_STD() configure check. Bug #762065 (Kjell Ahlstedt) 2016-03-03 Murray Cumming Remove unused SIGC_CXX_SELF_REFERENCE_IN_MEMBER_INITIALIZATION() configure check. Bug #762065 (Kjell Ahlstedt) 2016-03-02 Kjell Ahlstedt Improve the documentation of mem_fun() * sigc++/functors/macros/mem_fun.h.m4: * sigc++/functors/slot_base.h: Make it clear that mem_fun() does not return a slot, and 'auto s = sigc::mem_fun(....)' is not equivalent to 'sigc::slot<....> s = sigc::mem_fun(....)'. The confusing documentation was noted by Andrejs Hanins on libsigc-list. 2016-03-01 Murray Cumming Add test_bind_as_slot. This tests sigc::bind()'s indirect use of adaptor_functor<>. I added this because this doesn't work yet in the variadic_bind branch.