r18019 - gnucash/trunk/src/app-utils - Add missing file headers with license notice.

Phil Longstaff plongstaff at code.gnucash.org
Mon Apr 6 08:13:47 EDT 2009


Author: plongstaff
Date: 2009-04-06 08:13:46 -0400 (Mon, 06 Apr 2009)
New Revision: 18019
Trac: http://svn.gnucash.org/trac/changeset/18019

Modified:
   gnucash/trunk/src/app-utils/Makefile.am
   gnucash/trunk/src/app-utils/app-utils.scm
   gnucash/trunk/src/app-utils/gnc-account-merge.c
   gnucash/trunk/src/app-utils/gnc-account-merge.h
   gnucash/trunk/src/app-utils/gnc-basic-gobject.h
   gnucash/trunk/src/app-utils/gnc-druid-cb.c
   gnucash/trunk/src/app-utils/gnc-druid-cb.h
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.c
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.h
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.c
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.h
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.c
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.h
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc.c
   gnucash/trunk/src/app-utils/gnc-druid-provider-desc.h
   gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.c
   gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.h
   gnucash/trunk/src/app-utils/gnc-druid-provider.c
   gnucash/trunk/src/app-utils/gnc-druid-provider.h
   gnucash/trunk/src/app-utils/gnc-druid.c
   gnucash/trunk/src/app-utils/gnc-druid.h
Log:
Add missing file headers with license notice.


Modified: gnucash/trunk/src/app-utils/Makefile.am
===================================================================
--- gnucash/trunk/src/app-utils/Makefile.am	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/Makefile.am	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+# This program is free software; you can redistribute it and/or    
+# modify it under the terms of the GNU General Public License as   
+# published by the Free Software Foundation; either version 2 of   
+# the License, or (at your option) any later version.              
+#                                                                  
+# This program is distributed in the hope that it will be useful,  
+# but WITHOUT ANY WARRANTY; without even the implied warranty of   
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    
+# GNU General Public License for more details.                     
+#                                                                  
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, contact:
+#
+# Free Software Foundation           Voice:  +1-617-542-5942
+# 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652
+# Boston, MA  02110-1301,  USA       gnu at gnu.org
+
 SUBDIRS = . test
 
 pkglib_LTLIBRARIES = libgncmod-app-utils.la

Modified: gnucash/trunk/src/app-utils/app-utils.scm
===================================================================
--- gnucash/trunk/src/app-utils/app-utils.scm	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/app-utils.scm	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,19 @@
+;; This program is free software; you can redistribute it and/or    
+;; modify it under the terms of the GNU General Public License as   
+;; published by the Free Software Foundation; either version 2 of   
+;; the License, or (at your option) any later version.              
+;;                                                                  
+;; This program is distributed in the hope that it will be useful,  
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of   
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    
+;; GNU General Public License for more details.                     
+;;                                                                  
+;; You should have received a copy of the GNU General Public License
+;; along with this program; if not, contact:
+;;
+;; Free Software Foundation           Voice:  +1-617-542-5942
+;; 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652
+;; Boston, MA  02110-1301,  USA       gnu at gnu.org
 
 (define-module (gnucash app-utils))
 (use-modules (sw_app_utils))

Modified: gnucash/trunk/src/app-utils/gnc-account-merge.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-account-merge.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-account-merge.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,4 +1,22 @@
-/* Copyright (C) 2006 Joshua Sled <jsled at asynchronous.org> */
+/********************************************************************\
+ * gnc-account-merge.c                                              *
+ * Copyright (C) 2006 Joshua Sled <jsled at asynchronous.org>          *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
+
 #include "config.h"
 #include <glib.h>
 #include "gnc-account-merge.h"

Modified: gnucash/trunk/src/app-utils/gnc-account-merge.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-account-merge.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-account-merge.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,5 +1,23 @@
-/* Copyright (C) 2006 Joshua Sled <jsled at asynchronous.org> */
+/********************************************************************\
+ * gnc-account-merge.h                                              *
+ * Copyright (C) 2006 Joshua Sled <jsled at asynchronous.org>          *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
+
 #ifndef GNC_ACCOUNT_MERGE_H
 #define GNC_ACCOUNT_MERGE_H
 

Modified: gnucash/trunk/src/app-utils/gnc-basic-gobject.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-basic-gobject.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-basic-gobject.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-basic-gobject.h                                              *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_BASIC_GOBJECT_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-cb.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-cb.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-cb.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-cb.c                                                   *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-cb.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-cb.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-cb.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-cb.h                                                   *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_CB_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc-edge.c                                   *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc-edge.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc-edge.h                                   *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_PROVIDER_DESC_EDGE_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc-file.c                                   *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc-file.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc-file.h                                   *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_PROVIDER_DESC_FILE_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc-multifile.c                              *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc-multifile.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc-multifile.h                              *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_PROVIDER_DESC_MULTIFILE_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc.c                                        *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-desc.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-desc.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-desc.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-desc.h                                        *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_PROVIDER_DESC_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-file-cb.c                                     *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider-file-cb.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider-file-cb.h                                     *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_PROVIDER_FILE_CB_H

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider.c                                             *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid-provider.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid-provider.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid-provider.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid-provider.h                                             *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_PROVIDER_H

Modified: gnucash/trunk/src/app-utils/gnc-druid.c
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid.c	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid.c	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid.c                                                      *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #include "config.h"

Modified: gnucash/trunk/src/app-utils/gnc-druid.h
===================================================================
--- gnucash/trunk/src/app-utils/gnc-druid.h	2009-04-05 17:29:22 UTC (rev 18018)
+++ gnucash/trunk/src/app-utils/gnc-druid.h	2009-04-06 12:13:46 UTC (rev 18019)
@@ -1,3 +1,20 @@
+/********************************************************************\
+ * gnc-druid.h                                                      *
+ *                                                                  *
+ * This program is free software; you can redistribute it and/or    *
+ * modify it under the terms of the GNU General Public License as   *
+ * published by the Free Software Foundation; either version 2 of   *
+ * the License, or (at your option) any later version.              *
+ *                                                                  *
+ * This program is distributed in the hope that it will be useful,  *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
+ * GNU General Public License for more details.                     *
+ *                                                                  *
+ * You should have received a copy of the GNU General Public License*
+ * along with this program; if not, write to the Free Software      *
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.        *
+\********************************************************************/
 
 
 #ifndef GNC_DRUID_H



More information about the gnucash-changes mailing list