diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 22:57:55 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:07:15 +0800 |
commit | 80efc3dda3de137bc6d8e9cf339ded9f25d40234 (patch) | |
tree | d6360a4408e2496e8f325bea7dca47df1c2e622f | |
parent | f3cf1014c526d70e50b3900929f9a056c724d109 (diff) | |
download | gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.tar gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.tar.gz gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.tar.bz2 gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.tar.lz gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.tar.xz gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.tar.zst gsoc2013-empathy-80efc3dda3de137bc6d8e9cf339ded9f25d40234.zip |
empathy-theme-manager: fix coding style and update FSF address
-rw-r--r-- | libempathy-gtk/empathy-theme-manager.c | 8 | ||||
-rw-r--r-- | libempathy-gtk/empathy-theme-manager.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libempathy-gtk/empathy-theme-manager.c b/libempathy-gtk/empathy-theme-manager.c index 841e26297..0186b5eb7 100644 --- a/libempathy-gtk/empathy-theme-manager.c +++ b/libempathy-gtk/empathy-theme-manager.c @@ -15,8 +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. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA * * Authors: Xavier Claessens <xclaesse@gmail.com> */ @@ -69,8 +69,8 @@ G_DEFINE_TYPE (EmpathyThemeManager, empathy_theme_manager, G_TYPE_OBJECT); static void theme_manager_gdk_color_to_hex (GdkColor *gdk_color, gchar *str_color) { - g_snprintf (str_color, 10, - "#%02x%02x%02x", + g_snprintf (str_color, 10, + "#%02x%02x%02x", gdk_color->red >> 8, gdk_color->green >> 8, gdk_color->blue >> 8); diff --git a/libempathy-gtk/empathy-theme-manager.h b/libempathy-gtk/empathy-theme-manager.h index 05661d306..99c96d784 100644 --- a/libempathy-gtk/empathy-theme-manager.h +++ b/libempathy-gtk/empathy-theme-manager.h @@ -15,8 +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. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA * * Authors: Xavier Claessens <xclaesse@gmail.com> */ |