[Xfce4-commits] [panel-plugins/xfce4-calculator-plugin] 02/02: Updated FSF address (bug 12543).
noreply at xfce.org
noreply at xfce.org
Fri Apr 15 11:03:57 CEST 2016
This is an automated email from the git hooks/post-receive script.
roland pushed a commit to branch master
in repository panel-plugins/xfce4-calculator-plugin.
commit ea252f0b7591453980ddbd69a54bb78d961e0a35
Author: Roland Kuebert <roland.kuebert at gmail.com>
Date: Fri Apr 15 11:03:13 2016 +0200
Updated FSF address (bug 12543).
---
COPYING | 7 ++++---
COPYING.LIB | 2 +-
panel-plugin/calculator.c | 3 ++-
panel-plugin/constants.h | 3 ++-
panel-plugin/eval.c | 3 ++-
panel-plugin/eval.h | 3 ++-
panel-plugin/lexer.c | 3 ++-
panel-plugin/lexer.h | 3 ++-
panel-plugin/parser.c | 3 ++-
panel-plugin/parser.h | 3 ++-
panel-plugin/parsetree.c | 3 ++-
panel-plugin/parsetree.h | 3 ++-
12 files changed, 25 insertions(+), 14 deletions(-)
diff --git a/COPYING b/COPYING
index d60c31a..ae95922 100644
--- a/COPYING
+++ b/COPYING
@@ -1,8 +1,8 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
@@ -305,7 +305,8 @@ the "copyright" line and a pointer to where the full notice is found.
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
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ USA.
Also add information on how to contact you by electronic and paper mail.
diff --git a/COPYING.LIB b/COPYING.LIB
index 191a97f..022bc38 100644
--- a/COPYING.LIB
+++ b/COPYING.LIB
@@ -2,7 +2,7 @@
Version 2, June 1991
Copyright (C) 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
diff --git a/panel-plugin/calculator.c b/panel-plugin/calculator.c
index c9bb8ad..fe4134b 100644
--- a/panel-plugin/calculator.c
+++ b/panel-plugin/calculator.c
@@ -15,7 +15,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#ifdef HAVE_CONFIG_H
diff --git a/panel-plugin/constants.h b/panel-plugin/constants.h
index 8c1edbb..b48fd75 100644
--- a/panel-plugin/constants.h
+++ b/panel-plugin/constants.h
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#define MAX_ID_LEN 16
diff --git a/panel-plugin/eval.c b/panel-plugin/eval.c
index d52a887..e678e48 100644
--- a/panel-plugin/eval.c
+++ b/panel-plugin/eval.c
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#include <stdlib.h>
#include <string.h>
diff --git a/panel-plugin/eval.h b/panel-plugin/eval.h
index 15baf0f..d0efd2b 100644
--- a/panel-plugin/eval.h
+++ b/panel-plugin/eval.h
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#ifndef __EVAL_H__
#define __EVAL_H__
diff --git a/panel-plugin/lexer.c b/panel-plugin/lexer.c
index 33badf5..bd39316 100644
--- a/panel-plugin/lexer.c
+++ b/panel-plugin/lexer.c
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#include <stdlib.h>
#include <string.h>
diff --git a/panel-plugin/lexer.h b/panel-plugin/lexer.h
index bed99dd..75f3ab3 100644
--- a/panel-plugin/lexer.h
+++ b/panel-plugin/lexer.h
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#ifndef __LEXER_H__
#define __LEXER_H__
diff --git a/panel-plugin/parser.c b/panel-plugin/parser.c
index 88dc14e..5ae1bbb 100644
--- a/panel-plugin/parser.c
+++ b/panel-plugin/parser.c
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#include <stdlib.h>
#include <string.h>
diff --git a/panel-plugin/parser.h b/panel-plugin/parser.h
index 94534ee..98825c3 100644
--- a/panel-plugin/parser.h
+++ b/panel-plugin/parser.h
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#ifndef __PARSER_H__
#define __PARSER_H__
diff --git a/panel-plugin/parsetree.c b/panel-plugin/parsetree.c
index b07aa8f..187e22e 100644
--- a/panel-plugin/parsetree.c
+++ b/panel-plugin/parsetree.c
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#include <stdlib.h>
#include <glib.h>
diff --git a/panel-plugin/parsetree.h b/panel-plugin/parsetree.h
index f7676a2..a0f8ff8 100644
--- a/panel-plugin/parsetree.h
+++ b/panel-plugin/parsetree.h
@@ -13,7 +13,8 @@
*
* 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
*/
#ifndef __PARSETREE_H__
#define __PARSETREE_H__
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list