aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-junk-hook.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-27 22:29:19 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-27 22:29:19 +0800
commit948235c3d1076dbe6ed2e57a24c16a083bbd9f01 (patch)
tree4133b1adfd94d8f889ca7ad4ad851346518f4171 /mail/em-junk-hook.h
parentcc3a98fc1ad5bb87aa7335f3de404ee7feee1541 (diff)
downloadgsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.gz
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.bz2
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.lz
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.xz
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.tar.zst
gsoc2013-evolution-948235c3d1076dbe6ed2e57a24c16a083bbd9f01.zip
Prefer GLib basic types over C types.
Diffstat (limited to 'mail/em-junk-hook.h')
-rw-r--r--mail/em-junk-hook.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/em-junk-hook.h b/mail/em-junk-hook.h
index 0e467a20bd..9e7c999b29 100644
--- a/mail/em-junk-hook.h
+++ b/mail/em-junk-hook.h
@@ -56,17 +56,17 @@ struct _EMJunkHookTarget {
struct _EMJunkHookItem {
CamelJunkPlugin csp;
struct _EMJunkHook *hook; /* parent pointer */
- char *check_junk;
- char *report_junk;
- char *report_non_junk;
- char *commit_reports;
- char *validate_binary;
- char *plugin_name;
+ gchar *check_junk;
+ gchar *report_junk;
+ gchar *report_non_junk;
+ gchar *commit_reports;
+ gchar *validate_binary;
+ gchar *plugin_name;
};
struct _EMJunkHookGroup {
struct _EMJunkHook *hook; /* parent pointer */
- char *id; /* target id */
+ gchar *id; /* target id */
GSList *items; /* items to consider */
};