aboutsummaryrefslogtreecommitdiffstats
path: root/modules/spamassassin
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-08-03 22:40:40 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-08-03 22:40:40 +0800
commit4fc04af617091c77dfc9f6353299378918cb69cc (patch)
tree0723f125ecfafc33a59c3394c8d96450f85d0dde /modules/spamassassin
parent976df5871e7e4a332b3416fff78984088ba78ef2 (diff)
downloadgsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar
gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.gz
gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.bz2
gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.lz
gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.xz
gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.zst
gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.zip
Bug 655507 - Crash on startup when initializing spamassassin
I keep forgetting to not use G_PARAM_STATIC_STRINGS in modules...
Diffstat (limited to 'modules/spamassassin')
-rw-r--r--modules/spamassassin/evolution-spamassassin.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/modules/spamassassin/evolution-spamassassin.c b/modules/spamassassin/evolution-spamassassin.c
index 7172afd7aa..b578acf228 100644
--- a/modules/spamassassin/evolution-spamassassin.c
+++ b/modules/spamassassin/evolution-spamassassin.c
@@ -1086,8 +1086,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class)
"Local Only",
"Do not use tests requiring DNS lookups",
TRUE,
- G_PARAM_READWRITE |
- G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE));
g_object_class_install_property (
object_class,
@@ -1097,8 +1096,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class)
"spamc Binary",
"File path for the spamc binary",
NULL,
- G_PARAM_READWRITE |
- G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE));
g_object_class_install_property (
object_class,
@@ -1108,8 +1106,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class)
"spamd Binary",
"File path for the spamd binary",
NULL,
- G_PARAM_READWRITE |
- G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE));
g_object_class_install_property (
object_class,
@@ -1119,8 +1116,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class)
"Socket Path",
"Socket path for a SpamAssassin daemon",
NULL,
- G_PARAM_READWRITE |
- G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE));
g_object_class_install_property (
object_class,
@@ -1130,8 +1126,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class)
"Use Daemon",
"Whether to use a SpamAssassin daemon",
FALSE,
- G_PARAM_READWRITE |
- G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE));
}
static void