summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMake/export.cmake2
-rw-r--r--CMake/install.cmake2
-rw-r--r--CMake/macros.cmake2
-rw-r--r--CMake/options.cmake2
-rw-r--r--CMake/resources.cmake2
-rw-r--r--CMake/setup.cmake2
-rw-r--r--fluid/about_panel.cxx4
-rw-r--r--fluid/about_panel.fl4
-rw-r--r--fluid/about_panel.h2
-rw-r--r--fluid/alignment_panel.cxx2
-rw-r--r--fluid/alignment_panel.fl2
-rw-r--r--fluid/alignment_panel.h2
-rw-r--r--fluid/function_panel.cxx2
-rw-r--r--fluid/function_panel.fl2
-rw-r--r--fluid/function_panel.h2
-rw-r--r--fluid/print_panel.cxx2
-rw-r--r--fluid/print_panel.fl2
-rw-r--r--fluid/print_panel.h2
-rw-r--r--fluid/template_panel.cxx2
-rw-r--r--fluid/template_panel.fl2
-rw-r--r--fluid/template_panel.h2
-rw-r--r--fluid/widget_panel.cxx2
-rw-r--r--fluid/widget_panel.fl2
-rw-r--r--fluid/widget_panel.h2
24 files changed, 26 insertions, 26 deletions
diff --git a/CMake/export.cmake b/CMake/export.cmake
index 31e5cf342..84ee0d748 100644
--- a/CMake/export.cmake
+++ b/CMake/export.cmake
@@ -4,7 +4,7 @@
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Written by Michael Surette
#
-# Copyright 1998-2015 by Bill Spitzak and others.
+# Copyright 1998-2017 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
diff --git a/CMake/install.cmake b/CMake/install.cmake
index 20f58d9e6..f3eb3b3a0 100644
--- a/CMake/install.cmake
+++ b/CMake/install.cmake
@@ -4,7 +4,7 @@
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Written by Michael Surette
#
-# Copyright 1998-2015 by Bill Spitzak and others.
+# Copyright 1998-2017 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
diff --git a/CMake/macros.cmake b/CMake/macros.cmake
index 3bf80a585..c8b79b390 100644
--- a/CMake/macros.cmake
+++ b/CMake/macros.cmake
@@ -4,7 +4,7 @@
# macros.cmake defines macros used by the CMake build system
# Written by Michael Surette
#
-# Copyright 1998-2016 by Bill Spitzak and others.
+# Copyright 1998-2017 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
diff --git a/CMake/options.cmake b/CMake/options.cmake
index 6096b7861..33c24bc29 100644
--- a/CMake/options.cmake
+++ b/CMake/options.cmake
@@ -4,7 +4,7 @@
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Written by Michael Surette
#
-# Copyright 1998-2016 by Bill Spitzak and others.
+# Copyright 1998-2017 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
diff --git a/CMake/resources.cmake b/CMake/resources.cmake
index ae49b721d..fb2308bd6 100644
--- a/CMake/resources.cmake
+++ b/CMake/resources.cmake
@@ -4,7 +4,7 @@
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Written by Michael Surette
#
-# Copyright 1998-2015 by Bill Spitzak and others.
+# Copyright 1998-2017 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
diff --git a/CMake/setup.cmake b/CMake/setup.cmake
index 1ed7c95d0..b77edd570 100644
--- a/CMake/setup.cmake
+++ b/CMake/setup.cmake
@@ -4,7 +4,7 @@
# CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Written by Michael Surette
#
-# Copyright 1998-2015 by Bill Spitzak and others.
+# Copyright 1998-2017 by Bill Spitzak and others.
#
# This library is free software. Distribution and use rights are outlined in
# the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/about_panel.cxx b/fluid/about_panel.cxx
index 6a2c4a4c2..50d4d2f75 100644
--- a/fluid/about_panel.cxx
+++ b/fluid/about_panel.cxx
@@ -3,7 +3,7 @@
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -282,7 +282,7 @@ Fl_Double_Window* make_about_panel() {
snprintf(about,sizeof(about),"FLTK User\nInterface Designer\nVersion %d.%d.%d",FL_MAJOR_VERSION,FL_MINOR_VERSION,FL_PATCH_VERSION);
o->copy_label(about);
} // Fl_Box* o
- { Fl_Box* o = new Fl_Box(135, 90, 200, 45, "Copyright 1998-2016 by\nBill Spitzak and others");
+ { Fl_Box* o = new Fl_Box(135, 90, 200, 45, "Copyright 1998-2017 by\nBill Spitzak and others");
o->align(Fl_Align(132|FL_ALIGN_INSIDE));
} // Fl_Box* o
{ Fl_Button* o = new Fl_Button(115, 145, 123, 25, "View License...");
diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl
index bbbb7a0a4..b89308db0 100644
--- a/fluid/about_panel.fl
+++ b/fluid/about_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -45,7 +45,7 @@ Version x.x.x}
code2 {o->copy_label(about);}
}
Fl_Box {} {
- label {Copyright 1998-2016 by
+ label {Copyright 1998-2017 by
Bill Spitzak and others}
xywh {135 90 200 45} align 148
}
diff --git a/fluid/about_panel.h b/fluid/about_panel.h
index 063dd4ca6..62ba20542 100644
--- a/fluid/about_panel.h
+++ b/fluid/about_panel.h
@@ -3,7 +3,7 @@
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/alignment_panel.cxx b/fluid/alignment_panel.cxx
index 44fcfcaaf..8812690d6 100644
--- a/fluid/alignment_panel.cxx
+++ b/fluid/alignment_panel.cxx
@@ -3,7 +3,7 @@
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl
index 9eba25baa..8f31feeae 100644
--- a/fluid/alignment_panel.fl
+++ b/fluid/alignment_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/alignment_panel.h b/fluid/alignment_panel.h
index a8287d9b7..bb3af07d6 100644
--- a/fluid/alignment_panel.h
+++ b/fluid/alignment_panel.h
@@ -3,7 +3,7 @@
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/function_panel.cxx b/fluid/function_panel.cxx
index c2412c370..7c3712c0c 100644
--- a/fluid/function_panel.cxx
+++ b/fluid/function_panel.cxx
@@ -3,7 +3,7 @@
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/function_panel.fl b/fluid/function_panel.fl
index 0cd9609f7..8a8a595fa 100644
--- a/fluid/function_panel.fl
+++ b/fluid/function_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/function_panel.h b/fluid/function_panel.h
index 8456bf8d5..efac55312 100644
--- a/fluid/function_panel.h
+++ b/fluid/function_panel.h
@@ -3,7 +3,7 @@
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/print_panel.cxx b/fluid/print_panel.cxx
index 8dc7dcfd7..aeeb37824 100644
--- a/fluid/print_panel.cxx
+++ b/fluid/print_panel.cxx
@@ -3,7 +3,7 @@
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/print_panel.fl b/fluid/print_panel.fl
index 8434e4fb7..9f1746a68 100644
--- a/fluid/print_panel.fl
+++ b/fluid/print_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/print_panel.h b/fluid/print_panel.h
index a4cd0a7b0..0107d4701 100644
--- a/fluid/print_panel.h
+++ b/fluid/print_panel.h
@@ -3,7 +3,7 @@
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/template_panel.cxx b/fluid/template_panel.cxx
index 9e4b110f7..565bb3a4d 100644
--- a/fluid/template_panel.cxx
+++ b/fluid/template_panel.cxx
@@ -3,7 +3,7 @@
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/template_panel.fl b/fluid/template_panel.fl
index c3777ac9c..fd145c5c2 100644
--- a/fluid/template_panel.fl
+++ b/fluid/template_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/template_panel.h b/fluid/template_panel.h
index 806d72cb7..9c631ee91 100644
--- a/fluid/template_panel.h
+++ b/fluid/template_panel.h
@@ -3,7 +3,7 @@
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/widget_panel.cxx b/fluid/widget_panel.cxx
index 0e9416c4f..d309729d4 100644
--- a/fluid/widget_panel.cxx
+++ b/fluid/widget_panel.cxx
@@ -3,7 +3,7 @@
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/widget_panel.fl b/fluid/widget_panel.fl
index 4376a311c..031367bfe 100644
--- a/fluid/widget_panel.fl
+++ b/fluid/widget_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
diff --git a/fluid/widget_panel.h b/fluid/widget_panel.h
index 518c4956b..8f7ddc592 100644
--- a/fluid/widget_panel.h
+++ b/fluid/widget_panel.h
@@ -3,7 +3,7 @@
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2016 by Bill Spitzak and others.
+// Copyright 1998-2017 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this