]> git.0d.be Git - empathy.git/commitdiff
empathy-avatar-chooser: fix coding style and update FSF address
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 18 May 2009 15:04:55 +0000 (16:04 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Mon, 18 May 2009 15:07:17 +0000 (16:07 +0100)
libempathy-gtk/empathy-avatar-chooser.c
libempathy-gtk/empathy-avatar-chooser.h

index c86b85d259a27d4fa31c66c58970f95c057f360f..0f4311e07a3dc7aca09a9c13e144a3921a07813d 100644 (file)
@@ -14,8 +14,8 @@
  *
  * You should have received a copy of the GNU General Public
  * License along with this library; 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 St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
  *
  * Authors: Based on Novell's e-image-chooser.
  *          Xavier Claessens <xclaesse@gmail.com>
@@ -798,7 +798,7 @@ avatar_chooser_drag_data_received_cb (GtkWidget          *widget,
                        gchar *uri;
 
                        uri = g_strndup (selection_data->data,
-                                        nl - (gchar*) selection_data->data);
+                                        nl - (gchar *) selection_data->data);
 
                        file = g_file_new_for_uri (uri);
                        g_free (uri);
@@ -1000,7 +1000,7 @@ avatar_chooser_clicked_cb (GtkWidget            *button,
        gtk_file_chooser_add_filter (chooser_dialog, filter);
        filter = gtk_file_filter_new ();
        gtk_file_filter_set_name (filter, _("All Files"));
-       gtk_file_filter_add_pattern(filter, "*");
+       gtk_file_filter_add_pattern (filter, "*");
        gtk_file_chooser_add_filter (chooser_dialog, filter);
 
        /* Setup response */
index 564c1f37d3d81e73304ca5cfd680cdcff176d2f1..f4e40a8b0aef963ee9323aab381d879b9ed58c24 100644 (file)
@@ -14,8 +14,8 @@
  *
  * You should have received a copy of the GNU General Public
  * License along with this library; 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 St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
  *
  * Authors: Based on Novell's e-image-chooser.
  *          Xavier Claessens <xclaesse@gmail.com>