aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-config.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-03 03:12:33 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-03 03:12:55 +0800
commit74f86383fce61cd6712804f39a1baf011d59729a (patch)
tree937b63e8282c8363e624a90d7b8db9eb6c9c100c /mail/em-config.h
parent5fcf41925becbac39447b315097b062de2bfd0a1 (diff)
downloadgsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.tar
gsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.tar.gz
gsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.tar.bz2
gsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.tar.lz
gsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.tar.xz
gsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.tar.zst
gsoc2013-evolution-74f86383fce61cd6712804f39a1baf011d59729a.zip
EMConfig coding style cleanups.
Diffstat (limited to 'mail/em-config.h')
-rw-r--r--mail/em-config.h28
1 files changed, 16 insertions, 12 deletions
diff --git a/mail/em-config.h b/mail/em-config.h
index b0493cd9cf..bd39a4702c 100644
--- a/mail/em-config.h
+++ b/mail/em-config.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef __EM_CONFIG_H__
-#define __EM_CONFIG_H__
+#ifndef EM_CONFIG_H
+#define EM_CONFIG_H
#include <camel/camel.h>
#include <gconf/gconf-client.h>
@@ -71,10 +71,8 @@ struct _EMConfigTargetAccount {
typedef struct _EConfigItem EMConfigItem;
-/* The object */
struct _EMConfig {
EConfig config;
-
EMConfigPrivate *priv;
};
@@ -82,14 +80,20 @@ struct _EMConfigClass {
EConfigClass config_class;
};
-GType em_config_get_type (void);
-
-EMConfig *em_config_new (gint type, const gchar *menuid);
-
-EMConfigTargetFolder *em_config_target_new_folder (EMConfig *emp, CamelFolder *folder, const gchar *uri);
-EMConfigTargetPrefs *em_config_target_new_prefs (EMConfig *emp, GConfClient *gconf);
-EMConfigTargetAccount *em_config_target_new_account (EMConfig *emp, EAccount *account);
+GType em_config_get_type (void);
+EMConfig * em_config_new (gint type,
+ const gchar *menuid);
+EMConfigTargetFolder *
+ em_config_target_new_folder (EMConfig *emp,
+ CamelFolder *folder,
+ const gchar *uri);
+EMConfigTargetPrefs *
+ em_config_target_new_prefs (EMConfig *emp,
+ GConfClient *gconf);
+EMConfigTargetAccount *
+ em_config_target_new_account (EMConfig *emp,
+ EAccount *account);
G_END_DECLS
-#endif /* __EM_CONFIG_H__ */
+#endif /* EM_CONFIG_H */