aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-config.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-12 02:56:28 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-13 20:28:58 +0800
commitcd53ba990035bdb4861d9660917d457533d4ecb2 (patch)
treed9c9da2208f4a921c514497ea92d27e3d88481d1 /mail/em-config.c
parentb2b27cfa1bfcd6efdac30d2745a6e8cd4e6de134 (diff)
downloadgsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.gz
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.bz2
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.lz
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.xz
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.zst
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.zip
Coding style cleanups.
Diffstat (limited to 'mail/em-config.c')
-rw-r--r--mail/em-config.c64
1 files changed, 32 insertions, 32 deletions
diff --git a/mail/em-config.c b/mail/em-config.c
index 4e9d52ce61..2ac286b85a 100644
--- a/mail/em-config.c
+++ b/mail/em-config.c
@@ -45,15 +45,15 @@ struct _EMConfigPrivate {
};
static void
-emp_init(GObject *o)
+emp_init (GObject *o)
{
EMConfig *emp = (EMConfig *)o;
- emp->priv = g_malloc0(sizeof(*emp->priv));
+ emp->priv = g_malloc0 (sizeof (*emp->priv));
}
static void
-emp_finalise(GObject *o)
+emp_finalise (GObject *o)
{
struct _EMConfigPrivate *p = ((EMConfig *)o)->priv;
@@ -61,13 +61,13 @@ emp_finalise(GObject *o)
* will need to be freed first which will clean up any
* listeners */
- g_free(p);
+ g_free (p);
- ((GObjectClass *)emp_parent)->finalize(o);
+ ((GObjectClass *)emp_parent)->finalize (o);
}
static void
-emp_target_free(EConfig *ep, EConfigTarget *t)
+emp_target_free (EConfig *ep, EConfigTarget *t)
{
if (ep->target == t) {
switch (t->type) {
@@ -81,7 +81,7 @@ emp_target_free(EConfig *ep, EConfigTarget *t)
EMConfigTargetAccount *s = (EMConfigTargetAccount *)t;
if (((EMConfig *)ep)->priv->account_changed_id) {
- g_signal_handler_disconnect(s->account, ((EMConfig *)ep)->priv->account_changed_id);
+ g_signal_handler_disconnect (s->account, ((EMConfig *)ep)->priv->account_changed_id);
((EMConfig *)ep)->priv->account_changed_id = 0;
}
break; }
@@ -92,35 +92,35 @@ emp_target_free(EConfig *ep, EConfigTarget *t)
case EM_CONFIG_TARGET_FOLDER: {
EMConfigTargetFolder *s = (EMConfigTargetFolder *)t;
- g_free(s->uri);
+ g_free (s->uri);
g_object_unref (s->folder);
break; }
case EM_CONFIG_TARGET_PREFS: {
EMConfigTargetPrefs *s = (EMConfigTargetPrefs *)t;
if (s->gconf)
- g_object_unref(s->gconf);
+ g_object_unref (s->gconf);
break; }
case EM_CONFIG_TARGET_ACCOUNT: {
EMConfigTargetAccount *s = (EMConfigTargetAccount *)t;
- g_object_unref(s->account);
+ g_object_unref (s->account);
break; }
}
- ((EConfigClass *)emp_parent)->target_free(ep, t);
+ ((EConfigClass *)emp_parent)->target_free (ep, t);
}
static void
-emp_account_changed(struct _EAccount *ea, gint id, EMConfig *emc)
+emp_account_changed (struct _EAccount *ea, gint id, EMConfig *emc)
{
- e_config_target_changed((EConfig *)emc, E_CONFIG_TARGET_CHANGED_STATE);
+ e_config_target_changed ((EConfig *)emc, E_CONFIG_TARGET_CHANGED_STATE);
}
static void
-emp_set_target(EConfig *ep, EConfigTarget *t)
+emp_set_target (EConfig *ep, EConfigTarget *t)
{
- ((EConfigClass *)emp_parent)->set_target(ep, t);
+ ((EConfigClass *)emp_parent)->set_target (ep, t);
if (t) {
switch (t->type) {
@@ -140,7 +140,7 @@ emp_set_target(EConfig *ep, EConfigTarget *t)
}
static void
-emp_class_init(GObjectClass *klass)
+emp_class_init (GObjectClass *klass)
{
klass->finalize = emp_finalise;
((EConfigClass *)klass)->set_target = emp_set_target;
@@ -148,41 +148,41 @@ emp_class_init(GObjectClass *klass)
}
GType
-em_config_get_type(void)
+em_config_get_type (void)
{
static GType type = 0;
if (type == 0) {
static const GTypeInfo info = {
- sizeof(EMConfigClass),
+ sizeof (EMConfigClass),
NULL, NULL,
(GClassInitFunc)emp_class_init,
NULL, NULL,
- sizeof(EMConfig), 0,
+ sizeof (EMConfig), 0,
(GInstanceInitFunc)emp_init
};
- emp_parent = g_type_class_ref(e_config_get_type());
+ emp_parent = g_type_class_ref (e_config_get_type ());
type = g_type_register_static(e_config_get_type(), "EMConfig", &info, 0);
}
return type;
}
-EMConfig *em_config_new(gint type, const gchar *menuid)
+EMConfig *em_config_new (gint type, const gchar *menuid)
{
- EMConfig *emp = g_object_new(em_config_get_type(), NULL);
+ EMConfig *emp = g_object_new (em_config_get_type (), NULL);
- e_config_construct(&emp->config, type, menuid);
+ e_config_construct (&emp->config, type, menuid);
return emp;
}
EMConfigTargetFolder *
-em_config_target_new_folder(EMConfig *emp, CamelFolder *folder, const gchar *uri)
+em_config_target_new_folder (EMConfig *emp, CamelFolder *folder, const gchar *uri)
{
- EMConfigTargetFolder *t = e_config_target_new(&emp->config, EM_CONFIG_TARGET_FOLDER, sizeof(*t));
+ EMConfigTargetFolder *t = e_config_target_new (&emp->config, EM_CONFIG_TARGET_FOLDER, sizeof (*t));
- t->uri = g_strdup(uri);
+ t->uri = g_strdup (uri);
t->folder = folder;
g_object_ref (folder);
@@ -190,24 +190,24 @@ em_config_target_new_folder(EMConfig *emp, CamelFolder *folder, const gchar *uri
}
EMConfigTargetPrefs *
-em_config_target_new_prefs(EMConfig *emp, struct _GConfClient *gconf)
+em_config_target_new_prefs (EMConfig *emp, struct _GConfClient *gconf)
{
- EMConfigTargetPrefs *t = e_config_target_new(&emp->config, EM_CONFIG_TARGET_PREFS, sizeof(*t));
+ EMConfigTargetPrefs *t = e_config_target_new (&emp->config, EM_CONFIG_TARGET_PREFS, sizeof (*t));
t->gconf = gconf;
if (gconf)
- g_object_ref(gconf);
+ g_object_ref (gconf);
return t;
}
EMConfigTargetAccount *
-em_config_target_new_account(EMConfig *emp, struct _EAccount *account)
+em_config_target_new_account (EMConfig *emp, struct _EAccount *account)
{
- EMConfigTargetAccount *t = e_config_target_new(&emp->config, EM_CONFIG_TARGET_ACCOUNT, sizeof(*t));
+ EMConfigTargetAccount *t = e_config_target_new (&emp->config, EM_CONFIG_TARGET_ACCOUNT, sizeof (*t));
t->account = account;
- g_object_ref(account);
+ g_object_ref (account);
return t;
}