summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-04-20 08:28:08 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-04-20 08:45:25 +0200
commit5ce661e4b880e64b255a9ca50783c00f01db76cb (patch)
treed7cf5b21fed9ca249f74d4ec2f359b4f2849d0b4
parentf079a8e43ce3bdd280c82716d770405a19146efa (diff)
downloadsigc++-5ce661e4b880e64b255a9ca50783c00f01db76cb.tar.gz
Update copyright years.
-rw-r--r--examples/hello_world.cc2
-rw-r--r--examples/member_method.cc2
-rw-r--r--sigc++/adaptors/adaptors.h2
-rw-r--r--sigc++/adaptors/bound_argument.h2
-rw-r--r--sigc++/bind.h2
-rw-r--r--sigc++/bind_return.h2
-rw-r--r--sigc++/connection.cc2
-rw-r--r--sigc++/connection.h2
-rw-r--r--sigc++/functors/functors.h2
-rw-r--r--sigc++/functors/slot_base.cc2
-rw-r--r--sigc++/functors/slot_base.h2
-rw-r--r--sigc++/member_method_trait.h2
-rw-r--r--sigc++/reference_wrapper.h2
-rw-r--r--sigc++/retype_return.h2
-rw-r--r--sigc++/sigc++.h2
-rw-r--r--sigc++/signal.h2
-rw-r--r--sigc++/signal_base.cc2
-rw-r--r--sigc++/signal_base.h2
-rw-r--r--sigc++/slot.h2
-rw-r--r--sigc++/trackable.cc2
-rw-r--r--sigc++/trackable.h2
-rw-r--r--sigc++/type_traits.h2
-rw-r--r--sigc++/visit_each.h2
-rw-r--r--tests/test_accumulated.cc2
-rw-r--r--tests/test_bind.cc2
-rw-r--r--tests/test_bind_as_slot.cc2
-rw-r--r--tests/test_bind_refptr.cc2
-rw-r--r--tests/test_bind_return.cc2
-rw-r--r--tests/test_compose.cc2
-rw-r--r--tests/test_cpp11_lambda.cc2
-rw-r--r--tests/test_disconnect.cc2
-rw-r--r--tests/test_disconnect_during_emit.cc2
-rw-r--r--tests/test_exception_catch.cc2
-rw-r--r--tests/test_hide.cc2
-rw-r--r--tests/test_mem_fun.cc2
-rw-r--r--tests/test_member_method_trait.cc2
-rw-r--r--tests/test_ptr_fun.cc2
-rw-r--r--tests/test_retype.cc2
-rw-r--r--tests/test_retype_return.cc2
-rw-r--r--tests/test_signal.cc2
-rw-r--r--tests/test_signal_move.cc2
-rw-r--r--tests/test_size.cc2
-rw-r--r--tests/test_slot.cc2
-rw-r--r--tests/test_slot_disconnect.cc2
-rw-r--r--tests/test_slot_move.cc2
-rw-r--r--tests/test_track_obj.cc2
-rw-r--r--tests/test_trackable.cc2
-rw-r--r--tests/test_trackable_move.cc2
-rw-r--r--tests/test_visit_each.cc2
-rw-r--r--tests/test_visit_each_trackable.cc2
-rw-r--r--tests/testutilities.cc2
51 files changed, 51 insertions, 51 deletions
diff --git a/examples/hello_world.cc b/examples/hello_world.cc
index 08bb48f..6a171ab 100644
--- a/examples/hello_world.cc
+++ b/examples/hello_world.cc
@@ -1,4 +1,4 @@
-/* Copyright 2003, The libsigc++ Development Team
+/* Copyright 2003 - 2016, The libsigc++ Development Team
*
* Assigned to the public domain. Use as you wish without
* restriction.
diff --git a/examples/member_method.cc b/examples/member_method.cc
index 87cb97c..add00a1 100644
--- a/examples/member_method.cc
+++ b/examples/member_method.cc
@@ -1,4 +1,4 @@
-/* Copyright 2003, The libsigc++ Development Team
+/* Copyright 2003 - 2016, The libsigc++ Development Team
*
* Assigned to the public domain. Use as you wish without
* restriction.
diff --git a/sigc++/adaptors/adaptors.h b/sigc++/adaptors/adaptors.h
index 3abb41c..deecc95 100644
--- a/sigc++/adaptors/adaptors.h
+++ b/sigc++/adaptors/adaptors.h
@@ -1,6 +1,6 @@
// -*- c++ -*-
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/adaptors/bound_argument.h b/sigc++/adaptors/bound_argument.h
index 39d51e4..a0ca6da 100644
--- a/sigc++/adaptors/bound_argument.h
+++ b/sigc++/adaptors/bound_argument.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2005, The libsigc++ Development Team
+ * Copyright 2005 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/bind.h b/sigc++/bind.h
index 9972678..1f035cc 100644
--- a/sigc++/bind.h
+++ b/sigc++/bind.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/bind_return.h b/sigc++/bind_return.h
index ee9ccdb..44af942 100644
--- a/sigc++/bind_return.h
+++ b/sigc++/bind_return.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/connection.cc b/sigc++/connection.cc
index b7d3517..58c2fe5 100644
--- a/sigc++/connection.cc
+++ b/sigc++/connection.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/connection.h b/sigc++/connection.h
index 6b99b0c..58cfd9e 100644
--- a/sigc++/connection.h
+++ b/sigc++/connection.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/functors/functors.h b/sigc++/functors/functors.h
index c3f3a8b..a0ab57d 100644
--- a/sigc++/functors/functors.h
+++ b/sigc++/functors/functors.h
@@ -1,6 +1,6 @@
// -*- c++ -*-
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/functors/slot_base.cc b/sigc++/functors/slot_base.cc
index a5cd529..c6098a7 100644
--- a/sigc++/functors/slot_base.cc
+++ b/sigc++/functors/slot_base.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2003, The libsigc++ Development Team
+ * Copyright 2003 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/functors/slot_base.h b/sigc++/functors/slot_base.h
index d0f8c7d..53e9b1c 100644
--- a/sigc++/functors/slot_base.h
+++ b/sigc++/functors/slot_base.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2003, The libsigc++ Development Team
+ * Copyright 2003 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/member_method_trait.h b/sigc++/member_method_trait.h
index a23b454..37c77cb 100644
--- a/sigc++/member_method_trait.h
+++ b/sigc++/member_method_trait.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/reference_wrapper.h b/sigc++/reference_wrapper.h
index e929c3b..8b67e5f 100644
--- a/sigc++/reference_wrapper.h
+++ b/sigc++/reference_wrapper.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/retype_return.h b/sigc++/retype_return.h
index 89eddaf..f85e7f8 100644
--- a/sigc++/retype_return.h
+++ b/sigc++/retype_return.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/sigc++.h b/sigc++/sigc++.h
index de79222..dbbc520 100644
--- a/sigc++/sigc++.h
+++ b/sigc++/sigc++.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2003, The libsigc++ Development Team
+ * Copyright 2003 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/signal.h b/sigc++/signal.h
index a521b7d..13969ee 100644
--- a/sigc++/signal.h
+++ b/sigc++/signal.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2016, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/signal_base.cc b/sigc++/signal_base.cc
index 4916002..cde3d99 100644
--- a/sigc++/signal_base.cc
+++ b/sigc++/signal_base.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2003, The libsigc++ Development Team
+ * Copyright 2003 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/signal_base.h b/sigc++/signal_base.h
index 8df9dc4..10d3623 100644
--- a/sigc++/signal_base.h
+++ b/sigc++/signal_base.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/slot.h b/sigc++/slot.h
index 5bb6832..b4ef42c 100644
--- a/sigc++/slot.h
+++ b/sigc++/slot.h
@@ -1,4 +1,4 @@
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/trackable.cc b/sigc++/trackable.cc
index 8cbef82..5bb4207 100644
--- a/sigc++/trackable.cc
+++ b/sigc++/trackable.cc
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/trackable.h b/sigc++/trackable.h
index fcb5b38..a6a7829 100644
--- a/sigc++/trackable.h
+++ b/sigc++/trackable.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/type_traits.h b/sigc++/type_traits.h
index 78f63f2..849f75f 100644
--- a/sigc++/type_traits.h
+++ b/sigc++/type_traits.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/sigc++/visit_each.h b/sigc++/visit_each.h
index 066ccd3..e28d385 100644
--- a/sigc++/visit_each.h
+++ b/sigc++/visit_each.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2002, The libsigc++ Development Team
+ * Copyright 2002 - 2016, The libsigc++ Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/tests/test_accumulated.cc b/tests/test_accumulated.cc
index 3804536..788cfed 100644
--- a/tests/test_accumulated.cc
+++ b/tests/test_accumulated.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_bind.cc b/tests/test_bind.cc
index d5bd38d..9b5b01a 100644
--- a/tests/test_bind.cc
+++ b/tests/test_bind.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_bind_as_slot.cc b/tests/test_bind_as_slot.cc
index efcd360..985c34b 100644
--- a/tests/test_bind_as_slot.cc
+++ b/tests/test_bind_as_slot.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_bind_refptr.cc b/tests/test_bind_refptr.cc
index 18d6942..7b7d3a4 100644
--- a/tests/test_bind_refptr.cc
+++ b/tests/test_bind_refptr.cc
@@ -16,7 +16,7 @@
#ifndef _GLIBMM_REFPTR_H
#define _GLIBMM_REFPTR_H
-/* Copyright 2002 The gtkmm Development Team
+/* Copyright 2002 - 2016, The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/tests/test_bind_return.cc b/tests/test_bind_return.cc
index c9bf9b4..16df3a6 100644
--- a/tests/test_bind_return.cc
+++ b/tests/test_bind_return.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_compose.cc b/tests/test_compose.cc
index 51f8e72..8c03b04 100644
--- a/tests/test_compose.cc
+++ b/tests/test_compose.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_cpp11_lambda.cc b/tests/test_cpp11_lambda.cc
index 624bb0d..da92f24 100644
--- a/tests/test_cpp11_lambda.cc
+++ b/tests/test_cpp11_lambda.cc
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012 The libsigc++ Development Team
+/* Copyright (C) 2012 - 2016, The libsigc++ Development Team
*
* This file is part of libsigc++.
*
diff --git a/tests/test_disconnect.cc b/tests/test_disconnect.cc
index 0624fac..b6ddade 100644
--- a/tests/test_disconnect.cc
+++ b/tests/test_disconnect.cc
@@ -1,4 +1,4 @@
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_disconnect_during_emit.cc b/tests/test_disconnect_during_emit.cc
index 1ea02ad..b746c21 100644
--- a/tests/test_disconnect_during_emit.cc
+++ b/tests/test_disconnect_during_emit.cc
@@ -1,4 +1,4 @@
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_exception_catch.cc b/tests/test_exception_catch.cc
index 6267bdc..b9b059d 100644
--- a/tests/test_exception_catch.cc
+++ b/tests/test_exception_catch.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_hide.cc b/tests/test_hide.cc
index 0ff70fa..03ae9ab 100644
--- a/tests/test_hide.cc
+++ b/tests/test_hide.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_mem_fun.cc b/tests/test_mem_fun.cc
index 403abba..78838ed 100644
--- a/tests/test_mem_fun.cc
+++ b/tests/test_mem_fun.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_member_method_trait.cc b/tests/test_member_method_trait.cc
index 1e48e0c..376d685 100644
--- a/tests/test_member_method_trait.cc
+++ b/tests/test_member_method_trait.cc
@@ -1,4 +1,4 @@
-/* Copyright 2016, The libsigc++ Development Team
+/* Copyright 2016 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_ptr_fun.cc b/tests/test_ptr_fun.cc
index 16c63d7..73f57a5 100644
--- a/tests/test_ptr_fun.cc
+++ b/tests/test_ptr_fun.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_retype.cc b/tests/test_retype.cc
index 24f11d1..ff2b080 100644
--- a/tests/test_retype.cc
+++ b/tests/test_retype.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_retype_return.cc b/tests/test_retype_return.cc
index dd01b51..45a4d57 100644
--- a/tests/test_retype_return.cc
+++ b/tests/test_retype_return.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_signal.cc b/tests/test_signal.cc
index 2ad67f6..c533e87 100644
--- a/tests/test_signal.cc
+++ b/tests/test_signal.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_signal_move.cc b/tests/test_signal_move.cc
index 85f1199..a8c3916 100644
--- a/tests/test_signal_move.cc
+++ b/tests/test_signal_move.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015, The libsigc++ Development Team
+/* Copyright 2015 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_size.cc b/tests/test_size.cc
index d68cfa8..2b2a4d9 100644
--- a/tests/test_size.cc
+++ b/tests/test_size.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_slot.cc b/tests/test_slot.cc
index 87080e9..c6f417e 100644
--- a/tests/test_slot.cc
+++ b/tests/test_slot.cc
@@ -1,4 +1,4 @@
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_slot_disconnect.cc b/tests/test_slot_disconnect.cc
index e0af085..6eb464f 100644
--- a/tests/test_slot_disconnect.cc
+++ b/tests/test_slot_disconnect.cc
@@ -1,4 +1,4 @@
-/* Copyright 2005, The libsigc++ Development Team
+/* Copyright 2005 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_slot_move.cc b/tests/test_slot_move.cc
index 7785867..c9c7210 100644
--- a/tests/test_slot_move.cc
+++ b/tests/test_slot_move.cc
@@ -1,4 +1,4 @@
-/* Copyright 2015, The libsigc++ Development Team
+/* Copyright 2015 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_track_obj.cc b/tests/test_track_obj.cc
index a880ef2..46f432e 100644
--- a/tests/test_track_obj.cc
+++ b/tests/test_track_obj.cc
@@ -1,4 +1,4 @@
-/* Copyright (C) 2013 The libsigc++ Development Team
+/* Copyright (C) 2013 - 2016, The libsigc++ Development Team
*
* This file is part of libsigc++.
*
diff --git a/tests/test_trackable.cc b/tests/test_trackable.cc
index 2886a9c..e03c1b4 100644
--- a/tests/test_trackable.cc
+++ b/tests/test_trackable.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_trackable_move.cc b/tests/test_trackable_move.cc
index b0208b6..d423bec 100644
--- a/tests/test_trackable_move.cc
+++ b/tests/test_trackable_move.cc
@@ -1,5 +1,5 @@
// -*- c++ -*-
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/test_visit_each.cc b/tests/test_visit_each.cc
index 39b471d..ade8337 100644
--- a/tests/test_visit_each.cc
+++ b/tests/test_visit_each.cc
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014 The libsigc++ Development Team
+/* Copyright (C) 2014 - 2016, The libsigc++ Development Team
*
* This file is part of libsigc++.
*
diff --git a/tests/test_visit_each_trackable.cc b/tests/test_visit_each_trackable.cc
index 27c57bd..d553424 100644
--- a/tests/test_visit_each_trackable.cc
+++ b/tests/test_visit_each_trackable.cc
@@ -1,4 +1,4 @@
-/* Copyright 2002, The libsigc++ Development Team
+/* Copyright 2002 - 2016, The libsigc++ Development Team
* Assigned to public domain. Use as you wish without restriction.
*/
diff --git a/tests/testutilities.cc b/tests/testutilities.cc
index 845dcef..a34f2ab 100644
--- a/tests/testutilities.cc
+++ b/tests/testutilities.cc
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012 The libsigc++ Development Team
+/* Copyright (C) 2012 - 2016, The libsigc++ Development Team
*
* This file is part of libsigc++.
*