aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-theme-manager.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 22:57:55 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 23:07:15 +0800
commit80efc3dda3de137bc6d8e9cf339ded9f25d40234 (patch)
treed6360a4408e2496e8f325bea7dca47df1c2e622f /libempathy-gtk/empathy-theme-manager.c
parentf3cf1014c526d70e50b3900929f9a056c724d109 (diff)
downloadgsoc2013-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
Diffstat (limited to 'libempathy-gtk/empathy-theme-manager.c')
-rw-r--r--libempathy-gtk/empathy-theme-manager.c8
1 files changed, 4 insertions, 4 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);