diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-08-29 22:44:16 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-08-29 23:22:28 +0800 |
commit | 4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9 (patch) | |
tree | ce1154c5d7487fbd566c5b68df90fb8259b4604e /widgets/misc/e-map.c | |
parent | e6c42ecc596fb16247e8d1d591a5d244a61d0e24 (diff) | |
download | gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.gz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.bz2 gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.lz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.xz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.zst gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/misc/e-map.c')
-rw-r--r-- | widgets/misc/e-map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/misc/e-map.c b/widgets/misc/e-map.c index 682e84d50e..62e3571984 100644 --- a/widgets/misc/e-map.c +++ b/widgets/misc/e-map.c @@ -210,10 +210,10 @@ e_map_finalize (GObject *object) view = E_MAP (object); priv = view->priv; - g_object_unref((priv->hadj)); + g_object_unref ((priv->hadj)); priv->hadj = NULL; - g_object_unref((priv->vadj)); + g_object_unref ((priv->vadj)); priv->vadj = NULL; if (priv->map_pixbuf) @@ -1614,7 +1614,7 @@ zoom_do (EMap *map) g_signal_handlers_unblock_matched (priv->hadj, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, map); g_signal_handlers_unblock_matched (priv->vadj, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, map); - set_scroll_area(map); + set_scroll_area (map); } /* Callback used when an adjustment is changed */ |