[Galago-commits] r2507 - in trunk/gnome-presence-applet: . src

galago-commits at freedesktop.org galago-commits at freedesktop.org
Fri Jan 27 01:47:44 PST 2006


Author: chipx86
Date: 2006-01-27 01:19:35 -0800 (Fri, 27 Jan 2006)
New Revision: 2507

Modified:
   trunk/gnome-presence-applet/ChangeLog
   trunk/gnome-presence-applet/src/gnome-presence-applet.c
   trunk/gnome-presence-applet/src/gnome-presence-applet.h
   trunk/gnome-presence-applet/src/prefs-dialog.c
   trunk/gnome-presence-applet/src/prefs-dialog.h
   trunk/gnome-presence-applet/src/utils.c
   trunk/gnome-presence-applet/src/utils.h
Log:
Add GPL license headers to the top of each file.


Modified: trunk/gnome-presence-applet/ChangeLog
===================================================================
--- trunk/gnome-presence-applet/ChangeLog	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/ChangeLog	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,13 @@
+Fri Jan 27 01:18:45 PST 2006  Christian Hammond <chipx86 at chipx86.com>
+
+	* src/gnome-presence-applet.c:
+	* src/gnome-presence-applet.h:
+	* src/prefs-dialog.c:
+	* src/prefs-dialog.h:
+	* src/utils.c:
+	* src/utils.h:
+	  - Add GPL license headers to the top of each file.
+
 Mon Nov 07 01:46:26 PST 2005  Christian Hammond <chipx86 at chipx86.com>
 
 	* src/gnome-presence-applet.c:

Modified: trunk/gnome-presence-applet/src/gnome-presence-applet.c
===================================================================
--- trunk/gnome-presence-applet/src/gnome-presence-applet.c	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/src/gnome-presence-applet.c	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2004-2006 Christian Hammond
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA  02111-1307  USA
+ */
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif

Modified: trunk/gnome-presence-applet/src/gnome-presence-applet.h
===================================================================
--- trunk/gnome-presence-applet/src/gnome-presence-applet.h	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/src/gnome-presence-applet.h	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2004-2006 Christian Hammond
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA  02111-1307  USA
+ */
 #ifndef _GNOME_PRESENCE_APPLET_H_
 #define _GNOME_PRESENCE_APPLET_H_
 

Modified: trunk/gnome-presence-applet/src/prefs-dialog.c
===================================================================
--- trunk/gnome-presence-applet/src/prefs-dialog.c	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/src/prefs-dialog.c	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2004-2006 Christian Hammond
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA  02111-1307  USA
+ */
 #include "prefs-dialog.h"
 #include <panel-applet-gconf.h>
 

Modified: trunk/gnome-presence-applet/src/prefs-dialog.h
===================================================================
--- trunk/gnome-presence-applet/src/prefs-dialog.h	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/src/prefs-dialog.h	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2004-2006 Christian Hammond
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA  02111-1307  USA
+ */
 #ifndef _PREFS_DIALOG_H_
 #define _PREFS_DIALOG_H_
 

Modified: trunk/gnome-presence-applet/src/utils.c
===================================================================
--- trunk/gnome-presence-applet/src/utils.c	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/src/utils.c	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2004-2006 Christian Hammond
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA  02111-1307  USA
+ */
 #include "utils.h"
 #include <glib.h>
 #include <string.h>

Modified: trunk/gnome-presence-applet/src/utils.h
===================================================================
--- trunk/gnome-presence-applet/src/utils.h	2006-01-26 07:53:44 UTC (rev 2506)
+++ trunk/gnome-presence-applet/src/utils.h	2006-01-27 09:19:35 UTC (rev 2507)
@@ -1,3 +1,21 @@
+/**
+ * Copyright (C) 2004-2006 Christian Hammond
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA  02111-1307  USA
+ */
 #ifndef _UTILS_H_
 #define _UTILS_H_
 



More information about the galago-commits mailing list