diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-12-01 10:53:20 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-02-20 23:04:25 +0800 |
commit | 23f5773903d64a554d977ae7d0ebbaca73528f1f (patch) | |
tree | 104e1a59da8bf96b004bce204b79f47bbe0a6d13 /e-util/e-config.c | |
parent | 49bc4c2d765ee1780c23fdc9f42152850dabb220 (diff) | |
download | gsoc2013-evolution-23f5773903d64a554d977ae7d0ebbaca73528f1f.tar.gz gsoc2013-evolution-23f5773903d64a554d977ae7d0ebbaca73528f1f.tar.zst gsoc2013-evolution-23f5773903d64a554d977ae7d0ebbaca73528f1f.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-config.c')
-rw-r--r-- | e-util/e-config.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/e-util/e-config.c b/e-util/e-config.c index 7257f5a024..c4a6b7c419 100644 --- a/e-util/e-config.c +++ b/e-util/e-config.c @@ -34,6 +34,10 @@ #include <glib/gi18n.h> +#define E_CONFIG_GET_PRIVATE(obj) \ + (G_TYPE_INSTANCE_GET_PRIVATE \ + ((obj), E_TYPE_CONFIG, EConfigPrivate)) + #define d(x) typedef GtkWidget * @@ -226,8 +230,7 @@ e_config_class_init (EConfigClass *class) static void e_config_init (EConfig *config) { - config->priv = G_TYPE_INSTANCE_GET_PRIVATE ( - config, E_TYPE_CONFIG, EConfigPrivate); + config->priv = E_CONFIG_GET_PRIVATE (config); } /** @@ -1167,7 +1170,9 @@ e_config_create_widget (EConfig *emp) ec_rebuild (emp); /* auto-unref it */ - g_signal_connect (emp->widget, "destroy", G_CALLBACK(ec_widget_destroy), emp); + g_signal_connect ( + emp->widget, "destroy", + G_CALLBACK (ec_widget_destroy), emp); /* FIXME: for some reason ec_rebuild puts the widget on page 1, this is just to override that */ if (emp->type == E_CONFIG_BOOK) |