[gnome-applets] Revert "Updated FSF's address"



commit 09b2bead3a6be0f590d5d788c4701427b19b4d7b
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Sat Feb 1 19:34:02 2014 +0100

    Revert "Updated FSF's address"
    
    This reverts commit 4b190ee3faafc0cfb0daf5d6d84f3cc2bc8a2701.

 accessx-status/applet.c                    |    4 ++-
 accessx-status/applet.h                    |    4 ++-
 battstat/acpi-freebsd.c                    |    3 +-
 battstat/acpi-freebsd.h                    |   48 +++++++++++++++++++++++++++-
 battstat/acpi-linux.c                      |    3 +-
 battstat/acpi-linux.h                      |    3 +-
 battstat/battstat-hal.c                    |    3 +-
 battstat/battstat-hal.h                    |    3 +-
 battstat/battstat-upower.c                 |    3 +-
 battstat/battstat-upower.h                 |    3 +-
 battstat/battstat.h                        |    3 +-
 battstat/battstat_applet.c                 |    3 +-
 battstat/pixmaps.h                         |    3 +-
 battstat/power-management.c                |    3 +-
 battstat/properties.c                      |    3 +-
 geyes/geyes.h                              |    3 +-
 geyes/themes.c                             |    3 +-
 mixer/applet.c                             |    4 ++-
 mixer/applet.h                             |    4 ++-
 mixer/dock.c                               |    4 ++-
 mixer/dock.h                               |    4 ++-
 mixer/keys.h                               |    4 ++-
 mixer/load.c                               |    4 ++-
 mixer/preferences.c                        |    4 ++-
 mixer/preferences.h                        |    4 ++-
 modemlights/modem-applet.c                 |    3 +-
 modemlights/modem-applet.h                 |    3 +-
 stickynotes/stickynotes.c                  |    4 ++-
 stickynotes/stickynotes.h                  |    4 ++-
 stickynotes/stickynotes_applet.c           |    4 ++-
 stickynotes/stickynotes_applet.h           |    4 ++-
 stickynotes/stickynotes_applet_callbacks.c |    4 ++-
 stickynotes/stickynotes_applet_callbacks.h |    4 ++-
 stickynotes/stickynotes_callbacks.c        |    4 ++-
 stickynotes/stickynotes_callbacks.h        |    4 ++-
 stickynotes/util.c                         |    4 ++-
 stickynotes/util.h                         |    4 ++-
 trashapplet/src/trash-empty.c              |    4 ++-
 trashapplet/src/trash-empty.h              |    4 ++-
 39 files changed, 145 insertions(+), 39 deletions(-)
---
diff --git a/accessx-status/applet.c b/accessx-status/applet.c
index 8e1164d..719bfa1 100644
--- a/accessx-status/applet.c
+++ b/accessx-status/applet.c
@@ -12,7 +12,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #include <config.h>
diff --git a/accessx-status/applet.h b/accessx-status/applet.h
index 9a041f0..5afaa75 100644
--- a/accessx-status/applet.h
+++ b/accessx-status/applet.h
@@ -12,7 +12,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifndef __ACCESSX_APPLET_H__
diff --git a/battstat/acpi-freebsd.c b/battstat/acpi-freebsd.c
index 444649d..76a7519 100644
--- a/battstat/acpi-freebsd.c
+++ b/battstat/acpi-freebsd.c
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/acpi-freebsd.h b/battstat/acpi-freebsd.h
index 2d7edae..c5d04a8 100644
--- a/battstat/acpi-freebsd.h
+++ b/battstat/acpi-freebsd.h
@@ -12,7 +12,53 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __ACPI_FREEBSD_H__
+#define __ACPI_FREEBSD_H__
+
+#define ACPIDEV "/dev/acpi"
+
+#define BATT_MIN 0
+#define BATT_MAX 64
+
+#define ACPI_ACLINE "hw.acpi.acline"
+#define ACPI_TIME "hw.acpi.battery.time"
+#define ACPI_LIFE "hw.acpi.battery.life"
+#define ACPI_STATE "hw.acpi.battery.state"
+
+struct acpi_info {
+  gboolean  ac_online;
+  int       acpifd;
+  int       max_capacity;
+  int       low_capacity;
+  int       critical_capacity;
+};
+
+gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info * acpiinfo);
+gboolean acpi_process_event(struct acpi_info * acpiinfo);
+gboolean acpi_freebsd_init(struct acpi_info * acpiinfo);
+void acpi_freebsd_cleanup(struct acpi_info * acpiinfo);
+
+#endif /* __ACPI_FREEBSD_H__ */
+/*
+ * Copyright (C) 2004 by Joe Marcus Clarke <marcus FreeBSD 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., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  */
 
 #ifndef __ACPI_FREEBSD_H__
diff --git a/battstat/acpi-linux.c b/battstat/acpi-linux.c
index 2eb5630..0c8bed4 100644
--- a/battstat/acpi-linux.c
+++ b/battstat/acpi-linux.c
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/acpi-linux.h b/battstat/acpi-linux.h
index d96bbfe..9697b5d 100644
--- a/battstat/acpi-linux.h
+++ b/battstat/acpi-linux.h
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/battstat-hal.c b/battstat/battstat-hal.c
index 13569c4..ef3c1be 100644
--- a/battstat/battstat-hal.c
+++ b/battstat/battstat-hal.c
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  * $Id$
  */
diff --git a/battstat/battstat-hal.h b/battstat/battstat-hal.h
index 048040e..b94be4d 100644
--- a/battstat/battstat-hal.h
+++ b/battstat/battstat-hal.h
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  * $Id$
  */
diff --git a/battstat/battstat-upower.c b/battstat/battstat-upower.c
index d0be667..7370bca 100644
--- a/battstat/battstat-upower.c
+++ b/battstat/battstat-upower.c
@@ -15,7 +15,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  * $Id$
  */
diff --git a/battstat/battstat-upower.h b/battstat/battstat-upower.h
index b745358..ad7e035 100644
--- a/battstat/battstat-upower.h
+++ b/battstat/battstat-upower.h
@@ -15,7 +15,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  * $Id$
  */
diff --git a/battstat/battstat.h b/battstat/battstat.h
index c6a71ee..9b7acfd 100644
--- a/battstat/battstat.h
+++ b/battstat/battstat.h
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/battstat_applet.c b/battstat/battstat_applet.c
index ee541c7..be12560 100644
--- a/battstat/battstat_applet.c
+++ b/battstat/battstat_applet.c
@@ -13,7 +13,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/pixmaps.h b/battstat/pixmaps.h
index dddda61..3fad6cc 100644
--- a/battstat/pixmaps.h
+++ b/battstat/pixmaps.h
@@ -12,7 +12,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/power-management.c b/battstat/power-management.c
index d943681..c2c477b 100644
--- a/battstat/power-management.c
+++ b/battstat/power-management.c
@@ -13,7 +13,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/battstat/properties.c b/battstat/properties.c
index 1193b73..eed71c1 100644
--- a/battstat/properties.c
+++ b/battstat/properties.c
@@ -13,7 +13,8 @@
  *  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, see <http://www.gnu.org/licenses/>.
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
  *
  $Id$
  */
diff --git a/geyes/geyes.h b/geyes/geyes.h
index 2adbcd3..8f12d9d 100644
--- a/geyes/geyes.h
+++ b/geyes/geyes.h
@@ -12,7 +12,8 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  *  
  */
 
diff --git a/geyes/themes.c b/geyes/themes.c
index 93e9287..d1f9965 100644
--- a/geyes/themes.c
+++ b/geyes/themes.c
@@ -12,7 +12,8 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  *  
  */
 
diff --git a/mixer/applet.c b/mixer/applet.c
index b5748f3..19d366f 100644
--- a/mixer/applet.c
+++ b/mixer/applet.c
@@ -15,7 +15,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifdef HAVE_CONFIG_H
diff --git a/mixer/applet.h b/mixer/applet.h
index 9050a57..cbff8c8 100644
--- a/mixer/applet.h
+++ b/mixer/applet.h
@@ -15,7 +15,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifndef __GVA_APPLET_H__
diff --git a/mixer/dock.c b/mixer/dock.c
index 8ca390e..0fc8565 100644
--- a/mixer/dock.c
+++ b/mixer/dock.c
@@ -14,7 +14,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifdef HAVE_CONFIG_H
diff --git a/mixer/dock.h b/mixer/dock.h
index 7594560..4f863ea 100644
--- a/mixer/dock.h
+++ b/mixer/dock.h
@@ -14,7 +14,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifndef __GVA_DOCK_H__
diff --git a/mixer/keys.h b/mixer/keys.h
index 201b10b..f094d03 100644
--- a/mixer/keys.h
+++ b/mixer/keys.h
@@ -14,7 +14,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifndef __GVA_KEYS_H__
diff --git a/mixer/load.c b/mixer/load.c
index 3cee946..bf06243 100644
--- a/mixer/load.c
+++ b/mixer/load.c
@@ -14,7 +14,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifdef HAVE_CONFIG_H
diff --git a/mixer/preferences.c b/mixer/preferences.c
index de17b4f..4f7ba73 100644
--- a/mixer/preferences.c
+++ b/mixer/preferences.c
@@ -14,7 +14,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifdef HAVE_CONFIG_H
diff --git a/mixer/preferences.h b/mixer/preferences.h
index 619eb16..f4faadb 100644
--- a/mixer/preferences.h
+++ b/mixer/preferences.h
@@ -14,7 +14,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #ifndef __GVA_PREFERENCES_H__
diff --git a/modemlights/modem-applet.c b/modemlights/modem-applet.c
index 15e1065..361da34 100644
--- a/modemlights/modem-applet.c
+++ b/modemlights/modem-applet.c
@@ -12,7 +12,8 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  *
  * Authors: Carlos Garnacho Parro  <carlosg gnome org>
  */
diff --git a/modemlights/modem-applet.h b/modemlights/modem-applet.h
index a5f34bc..49d9701 100644
--- a/modemlights/modem-applet.h
+++ b/modemlights/modem-applet.h
@@ -12,7 +12,8 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  *
  * Authors: Carlos Garnacho Parro  <carlosg gnome org>
  */
diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c
index 0dc421f..c1b10f4 100644
--- a/stickynotes/stickynotes.c
+++ b/stickynotes/stickynotes.c
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <config.h>
diff --git a/stickynotes/stickynotes.h b/stickynotes/stickynotes.h
index 25285d1..0e64c73 100644
--- a/stickynotes/stickynotes.h
+++ b/stickynotes/stickynotes.h
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #ifndef __STICKYNOTES_H__
diff --git a/stickynotes/stickynotes_applet.c b/stickynotes/stickynotes_applet.c
index ed59834..0a13a3b 100644
--- a/stickynotes/stickynotes_applet.c
+++ b/stickynotes/stickynotes_applet.c
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <config.h>
diff --git a/stickynotes/stickynotes_applet.h b/stickynotes/stickynotes_applet.h
index 9e833ec..779491f 100644
--- a/stickynotes/stickynotes_applet.h
+++ b/stickynotes/stickynotes_applet.h
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #ifndef __STICKYNOTES_APPLET_H__
diff --git a/stickynotes/stickynotes_applet_callbacks.c b/stickynotes/stickynotes_applet_callbacks.c
index 4f5bbf1..2aa8aaf 100644
--- a/stickynotes/stickynotes_applet_callbacks.c
+++ b/stickynotes/stickynotes_applet_callbacks.c
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <config.h>
diff --git a/stickynotes/stickynotes_applet_callbacks.h b/stickynotes/stickynotes_applet_callbacks.h
index 342d273..95b66a4 100644
--- a/stickynotes/stickynotes_applet_callbacks.h
+++ b/stickynotes/stickynotes_applet_callbacks.h
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <stickynotes_applet.h>
diff --git a/stickynotes/stickynotes_callbacks.c b/stickynotes/stickynotes_callbacks.c
index ca101b6..604e508 100644
--- a/stickynotes/stickynotes_callbacks.c
+++ b/stickynotes/stickynotes_callbacks.c
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <config.h>
diff --git a/stickynotes/stickynotes_callbacks.h b/stickynotes/stickynotes_callbacks.h
index f874dcc..686d7da 100644
--- a/stickynotes/stickynotes_callbacks.h
+++ b/stickynotes/stickynotes_callbacks.h
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #ifndef __STICKYNOTES_CALLBACKS_H__
diff --git a/stickynotes/util.c b/stickynotes/util.c
index 59efe6a..0e28b83 100644
--- a/stickynotes/util.c
+++ b/stickynotes/util.c
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <config.h>
diff --git a/stickynotes/util.h b/stickynotes/util.h
index ceaff51..6ffe823 100644
--- a/stickynotes/util.h
+++ b/stickynotes/util.h
@@ -12,7 +12,9 @@
  * 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, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #ifndef __UTIL_H__
diff --git a/trashapplet/src/trash-empty.c b/trashapplet/src/trash-empty.c
index 5cd8523..bb33c5c 100644
--- a/trashapplet/src/trash-empty.c
+++ b/trashapplet/src/trash-empty.c
@@ -14,7 +14,9 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #include <gconf/gconf-client.h>
diff --git a/trashapplet/src/trash-empty.h b/trashapplet/src/trash-empty.h
index 06a839b..1bfbdc5 100644
--- a/trashapplet/src/trash-empty.h
+++ b/trashapplet/src/trash-empty.h
@@ -14,7 +14,9 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
  */
 
 #ifndef _trash_empty_h_


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]