Author: greg.ercolano
Date: 2010-12-10 00:09:27 -0800 (Fri, 10 Dec 2010)
New Revision: 7996
Log:
Header mods for submission history, copyright notices, consistency.


Modified:
   branches/branch-1.3/examples/menubar-add.cxx
   branches/branch-1.3/examples/table-as-container.cxx
   branches/branch-1.3/examples/table-simple.cxx
   branches/branch-1.3/examples/table-sort.cxx
   branches/branch-1.3/examples/tabs-simple.cxx
   branches/branch-1.3/examples/texteditor-simple.cxx
   branches/branch-1.3/examples/tree-simple.cxx
   branches/branch-1.3/examples/wizard-simple.cxx

Modified: branches/branch-1.3/examples/menubar-add.cxx
===================================================================
--- branches/branch-1.3/examples/menubar-add.cxx        2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/menubar-add.cxx        2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -1,7 +1,7 @@
 //
 // "$Id$"
 //
-// An example of using Fl_Menu_Bar's add() to dynamically create menubars
+//     An example of using Fl_Menu_Bar's add() to dynamically create menubars
 //
 //     Menu bars can be created several ways. Using add() allows
 //     dynamically creating a menubar using a 'pathname' syntax.

Modified: branches/branch-1.3/examples/table-as-container.cxx
===================================================================
--- branches/branch-1.3/examples/table-as-container.cxx 2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/table-as-container.cxx 2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -10,7 +10,7 @@
 //     widgets; one widget per cell. This isn't optimal for large tables,
 //     where it's better to make one instance of a widget, and move it to
 //     where it's needed. For an example of this, see the example program
-//     "table-simple-spreadsheet.cxx"
+//     "table-spreadsheet.cxx".
 //
 // Copyright 2010 Greg Ercolano.
 // Copyright 1998-2010 by Bill Spitzak and others.

Modified: branches/branch-1.3/examples/table-simple.cxx
===================================================================
--- branches/branch-1.3/examples/table-simple.cxx       2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/table-simple.cxx       2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -8,6 +8,7 @@
 //    No interaction; simple display of data only.
 //    See other examples for more complex interactions with the table.
 //
+// Copyright 2010 Greg Ercolano.
 // Copyright 1998-2010 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or

Modified: branches/branch-1.3/examples/table-sort.cxx
===================================================================
--- branches/branch-1.3/examples/table-sort.cxx 2010-12-10 07:52:05 UTC (rev 
7995)
+++ branches/branch-1.3/examples/table-sort.cxx 2010-12-10 08:09:27 UTC (rev 
7996)
@@ -1,16 +1,16 @@
 //
 // "$Id$"
 //
-//  table-sort -- An example application using a sortable Fl_Table
+//     table-sort -- An example application using a sortable Fl_Table
 //                
+//     Originally the 'sortapp.cxx' example program that came with 
+//     erco's Fl_Table widget. Added to FLTK in 2010.
+//
 //      Example of a non-trivial application that uses Fl_Table 
 //      with sortable columns. This example is not trying to be simple,
-//      but to demonstrate the complexities of an actual small app.
+//      but to demonstrate the complexities of an actual app.
 //
-// HISTORY
-//      03/18/2003 -- 'sortapp.cxx' added to the Fl_Table widget package -erco
-//      11/30/2010 -- Modified and added to FLTK examples -erco
-//
+// Copyright 2010 Greg Ercolano.
 // Copyright 1998-2010 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or

Modified: branches/branch-1.3/examples/tabs-simple.cxx
===================================================================
--- branches/branch-1.3/examples/tabs-simple.cxx        2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/tabs-simple.cxx        2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -1,9 +1,10 @@
 //
 // "$Id$"
 //
-// Simple Fl_Tabs widget example. 
-// Originally from erco's cheat sheet 06/05/2010, permission by author.
+//     Simple Fl_Tabs widget example. 
+//     Originally from erco's cheat sheet 06/05/2010, permission by author.
 //
+// Copyright 2010 Greg Ercolano.
 // Copyright 1998-2010 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or

Modified: branches/branch-1.3/examples/texteditor-simple.cxx
===================================================================
--- branches/branch-1.3/examples/texteditor-simple.cxx  2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/texteditor-simple.cxx  2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -1,7 +1,7 @@
 //
 // "$Id$"
 //
-// A simple example of Fl_Text_Editor
+//     A simple example of Fl_Text_Editor
 //
 //     Fl_Text_Editor is unlike other FLTK widgets in that
 //     to work correctly, it must be assigned to an instance of an

Modified: branches/branch-1.3/examples/tree-simple.cxx
===================================================================
--- branches/branch-1.3/examples/tree-simple.cxx        2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/tree-simple.cxx        2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -1,8 +1,9 @@
 //
 // "$Id$"
 //
-// Simple Fl_Tree widget example. - erco 06/05/2010
+//     Simple Fl_Tree widget example. - erco 06/05/2010
 //
+// Copyright 2010 Greg Ercolano.
 // Copyright 1998-2010 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or

Modified: branches/branch-1.3/examples/wizard-simple.cxx
===================================================================
--- branches/branch-1.3/examples/wizard-simple.cxx      2010-12-10 07:52:05 UTC 
(rev 7995)
+++ branches/branch-1.3/examples/wizard-simple.cxx      2010-12-10 08:09:27 UTC 
(rev 7996)
@@ -1,9 +1,10 @@
 //
 // "$Id$"
 //
-// Simple Fl_Wizard widget example. 
-// Originally from erco's cheat sheet 06/05/2010, permission by author.
+//     Simple Fl_Wizard widget example. 
+//     Originally from erco's cheat sheet 06/05/2010, permission by author.
 //
+// Copyright 2010 Greg Ercolano.
 // Copyright 1998-2010 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to