From 433459c32fe233f3009aff309128dc329db713d1 Mon Sep 17 00:00:00 2001 From: Fernando da Silva Sousa Date: Sat, 29 Apr 2017 12:39:27 -0300 Subject: [PATCH] Update FSF Address (#14) --- src/Backend/App.vala | 6 +++--- src/Backend/NotifyManager.vala | 6 +++--- src/Backend/NotifySettings.vala | 6 +++--- src/Plug.vala | 4 ++-- src/Widgets/AppEntry.vala | 4 ++-- src/Widgets/AppList.vala | 4 ++-- src/Widgets/AppSettingsView.vala | 4 ++-- src/Widgets/Footer.vala | 4 ++-- src/Widgets/MainView.vala | 6 +++--- src/Widgets/SettingsHeader.vala | 4 ++-- src/Widgets/SettingsOption.vala | 4 ++-- src/Widgets/Sidebar.vala | 4 ++-- 12 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/Backend/App.vala b/src/Backend/App.vala index 1ba7d178..eab50ab7 100644 --- a/src/Backend/App.vala +++ b/src/Backend/App.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Backend.App : Object { @@ -31,4 +31,4 @@ public class Backend.App : Object { app_id = app_info.get_id ().replace (".desktop", ""); settings = new Settings.full (SettingsSchemaSource.get_default ().lookup (CHILD_SCHEMA_ID, true), null, CHILD_PATH.printf (app_id)); } -} \ No newline at end of file +} diff --git a/src/Backend/NotifyManager.vala b/src/Backend/NotifyManager.vala index a3999ea1..190457df 100644 --- a/src/Backend/NotifyManager.vala +++ b/src/Backend/NotifyManager.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Backend.NotifyManager : Object { @@ -60,4 +60,4 @@ public class Backend.NotifyManager : Object { App app = new App (app_info); apps.@set (app.app_id, app); } -} \ No newline at end of file +} diff --git a/src/Backend/NotifySettings.vala b/src/Backend/NotifySettings.vala index d3d18140..e4c46151 100644 --- a/src/Backend/NotifySettings.vala +++ b/src/Backend/NotifySettings.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Backend.NotifySettings : Granite.Services.Settings { @@ -33,4 +33,4 @@ public class Backend.NotifySettings : Granite.Services.Settings { private NotifySettings () { base ("org.pantheon.desktop.gala.notifications"); } -} \ No newline at end of file +} diff --git a/src/Plug.vala b/src/Plug.vala index 076564d8..5f11913b 100644 --- a/src/Plug.vala +++ b/src/Plug.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class NotificationsPlug : Switchboard.Plug { diff --git a/src/Widgets/AppEntry.vala b/src/Widgets/AppEntry.vala index 5105241f..b17b143a 100644 --- a/src/Widgets/AppEntry.vala +++ b/src/Widgets/AppEntry.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.AppEntry : Gtk.ListBoxRow { diff --git a/src/Widgets/AppList.vala b/src/Widgets/AppList.vala index 56fda4e5..541ee15e 100644 --- a/src/Widgets/AppList.vala +++ b/src/Widgets/AppList.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.AppList : Gtk.ListBox { diff --git a/src/Widgets/AppSettingsView.vala b/src/Widgets/AppSettingsView.vala index 16b05e94..222fa5db 100644 --- a/src/Widgets/AppSettingsView.vala +++ b/src/Widgets/AppSettingsView.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.AppSettingsView : Gtk.Grid { diff --git a/src/Widgets/Footer.vala b/src/Widgets/Footer.vala index d35f8c3d..b01f16ce 100644 --- a/src/Widgets/Footer.vala +++ b/src/Widgets/Footer.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.Footer : Gtk.ActionBar { diff --git a/src/Widgets/MainView.vala b/src/Widgets/MainView.vala index 533fe6a8..90e79313 100644 --- a/src/Widgets/MainView.vala +++ b/src/Widgets/MainView.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.MainView : Gtk.Paned { @@ -69,4 +69,4 @@ public class Widgets.MainView : Gtk.Paned { private void update_view () { content.set_visible_child_name (Backend.NotifyManager.get_default ().do_not_disturb ? "alert-view" : "app-settings-view"); } -} \ No newline at end of file +} diff --git a/src/Widgets/SettingsHeader.vala b/src/Widgets/SettingsHeader.vala index 3ef98408..8b84d8c5 100644 --- a/src/Widgets/SettingsHeader.vala +++ b/src/Widgets/SettingsHeader.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.SettingsHeader : Gtk.Grid { diff --git a/src/Widgets/SettingsOption.vala b/src/Widgets/SettingsOption.vala index 831d97c6..b3a3c620 100644 --- a/src/Widgets/SettingsOption.vala +++ b/src/Widgets/SettingsOption.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.SettingsOption : Gtk.Grid { diff --git a/src/Widgets/Sidebar.vala b/src/Widgets/Sidebar.vala index ca14c1e8..0950d3a1 100644 --- a/src/Widgets/Sidebar.vala +++ b/src/Widgets/Sidebar.vala @@ -13,8 +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. + * Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, + * Boston, MA 02110-1301, USA. */ public class Widgets.Sidebar : Gtk.Box {